mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-30 00:36:05 +00:00
14 lines
229 B
LLVM
14 lines
229 B
LLVM
; RUN: not llvm-as < %s > /dev/null 2>&1
|
|
; PR1633
|
|
|
|
%meta = type { ptr }
|
|
%obj = type { ptr }
|
|
|
|
declare void @llvm.gcwrite(ptr, ptr, ptr)
|
|
|
|
define void @f() {
|
|
entry:
|
|
call void @llvm.gcwrite(ptr null, ptr null, ptr null)
|
|
ret void
|
|
}
|