aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/GC/outside.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/GC/outside.ll')
-rw-r--r--test/CodeGen/X86/GC/outside.ll10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/CodeGen/X86/GC/outside.ll b/test/CodeGen/X86/GC/outside.ll
deleted file mode 100644
index 2968c6917ce1..000000000000
--- a/test/CodeGen/X86/GC/outside.ll
+++ /dev/null
@@ -1,10 +0,0 @@
-; RUN: not llvm-as < %s >& /dev/null
-
-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
-}