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.
15 lines
253 B
15 lines
253 B
4 months ago
|
; RUN: not llvm-as < %s >& /dev/null
|
||
|
; PR1633
|
||
|
|
||
|
%meta = type { i8* }
|
||
|
%obj = type { %meta* }
|
||
|
|
||
|
declare void @llvm.gcroot(%obj*, %meta*)
|
||
|
|
||
|
define void @f() {
|
||
|
entry:
|
||
|
%local.obj = alloca %obj
|
||
|
call void @llvm.gcroot(%obj* %local.obj, %meta* null)
|
||
|
ret void
|
||
|
}
|