blob: c44321a065b024984d68fbfc0b6e33757553fe45 [file] [log] [blame]
Gordon Henriksen8c33da52007-09-17 20:30:04 +00001; RUN: not llvm-as < %s
2; PR1633
3
4%meta = type { i8* }
5%obj = type { %meta* }
6
7declare void @llvm.gcroot(%obj**, %meta*)
8
9define void @f() {
10entry:
11 call void @llvm.gcroot(%obj** null, %meta* null)
12
13 ret void
14}