mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
13 lines
240 B
LLVM
13 lines
240 B
LLVM
; RUN: not llvm-as < %s >& /dev/null
|
|
; 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
|
|
}
|