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.
|
; RUN: not llvm-as < %s > /dev/null 2>&1
|
|
; 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
|
|
}
|