[TableGen] Fix validateOperandClass for non Phyical Reg (#118146)
[llvm-project.git] / llvm / test / CodeGen / X86 / GC / badrootproto.ll
blob6abeb3f7bc61ac71759af093787aaaf21f6d6d26
1 ; RUN: not llvm-as < %s > /dev/null 2>&1
3         %list = type { i32, ptr }
4         %meta = type opaque
6 ; This usage is invalid now; instead, objects must be bitcast to ptr for input
7 ; to the gc intrinsics.
8 declare void @llvm.gcroot(ptr, ptr)
10 define void @root() gc "example" {
11         %x.var = alloca ptr
12         call void @llvm.gcroot(ptr %x.var, ptr null)