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
231 B

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