mirror of
https://github.com/jeremysrand/llvm-65816.git
synced 2024-11-18 23:05:00 +00:00
14 lines
231 B
LLVM
14 lines
231 B
LLVM
; 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
|
|
}
|