llvm-6502/test/CodeGen/Generic/GC/outside.ll
Gordon Henriksen e1433f24cf Noting and enforcing that GC intrinsics are valid only within a
function with GC.

This will catch the error when the inliner inlines a function with
GC into a caller with no GC.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45350 91177308-0d34-0410-b5e6-96231b3b80d8
2007-12-25 02:31:26 +00:00

11 lines
192 B
LLVM

; RUN: not llvm-as < %s
declare void @llvm.gcroot(i8**, i8*)
define void @f(i8* %x) {
%root = alloca i8*
call void @llvm.gcroot(i8** %root, i8* null)
store i8* %x, i8** %root
ret void
}