blob: 122bfe4a47bcc04334d93e5233bfc931bc266f93 [file] [log] [blame]
Gordon Henriksene1433f22007-12-25 02:31:26 +00001; RUN: not llvm-as < %s
2
3declare void @llvm.gcroot(i8**, i8*)
4
5define void @f(i8* %x) {
6 %root = alloca i8*
7 call void @llvm.gcroot(i8** %root, i8* null)
8 store i8* %x, i8** %root
9 ret void
10}