aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/ga-offset2.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/ga-offset2.ll')
-rw-r--r--test/CodeGen/X86/ga-offset2.ll10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/CodeGen/X86/ga-offset2.ll b/test/CodeGen/X86/ga-offset2.ll
deleted file mode 100644
index bc4a3493ff6f..000000000000
--- a/test/CodeGen/X86/ga-offset2.ll
+++ /dev/null
@@ -1,10 +0,0 @@
-; RUN: llc < %s -mtriple=i686-apple-darwin -relocation-model=dynamic-no-pic | FileCheck %s
-
-@var = external hidden global i32
-@p = external hidden global i32*
-
-define void @f() {
-; CHECK: movl $_var+40, _p
- store i32* getelementptr (i32, i32* @var, i64 10), i32** @p
- ret void
-}