blob: c44321a065b024984d68fbfc0b6e33757553fe45 [file] [log] [blame]
; RUN: not llvm-as < %s
; PR1633
%meta = type { i8* }
%obj = type { %meta* }
declare void @llvm.gcroot(%obj**, %meta*)
define void @f() {
entry:
call void @llvm.gcroot(%obj** null, %meta* null)
ret void
}