You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
244 B

; RUN: not llvm-as < %s > /dev/null 2>&1
; PR1633
%meta = type { i8* }
%obj = type { %meta* }
declare void @llvm.gcwrite(%obj*, %obj*, %obj*)
define void @f() {
entry:
call void @llvm.gcwrite(%obj* null, %obj* null, %obj* null)
ret void
}