blob: 24277a4c9e3e14cd1f26d88e0ee99db02ce5c4ab [file] [log] [blame]
; RUN: not llvm-as < %s > /dev/null 2>&1
; PR1633
%meta = type { ptr }
%obj = type { ptr }
declare void @llvm.gcwrite(ptr, ptr, ptr)
define void @f() {
entry:
call void @llvm.gcwrite(ptr null, ptr null, ptr null)
ret void
}