Revert r354244 "[DAGCombiner] Eliminate dead stores to stack."
[llvm-complete.git] / test / CodeGen / X86 / GC / badrootproto.ll
blob37a3451c2c17e19006e847f39651b5922e2a034f
1 ; RUN: not llvm-as < %s > /dev/null 2>&1
3         %list = type { i32, %list* }
4         %meta = type opaque
6 ; This usage is invalid now; instead, objects must be bitcast to i8* for input
7 ; to the gc intrinsics.
8 declare void @llvm.gcroot(%list*, %meta*)
10 define void @root() gc "example" {
11         %x.var = alloca i8*
12         call void @llvm.gcroot(i8** %x.var, %meta* null)