mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-12 15:05:06 +00:00
14 lines
227 B
LLVM
14 lines
227 B
LLVM
|
; RUN: not llvm-as < %s
|
||
|
; 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
|
||
|
}
|