aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/fast-isel-pie.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/ARM/fast-isel-pie.ll')
-rw-r--r--test/CodeGen/ARM/fast-isel-pie.ll19
1 files changed, 0 insertions, 19 deletions
diff --git a/test/CodeGen/ARM/fast-isel-pie.ll b/test/CodeGen/ARM/fast-isel-pie.ll
deleted file mode 100644
index 23a88bdaa22e..000000000000
--- a/test/CodeGen/ARM/fast-isel-pie.ll
+++ /dev/null
@@ -1,19 +0,0 @@
-; RUN: llc < %s -O0 -fast-isel-abort=1 -relocation-model=pic -mtriple=armv7-pc-linux-gnueabi | FileCheck %s
-
-@var = global i32 42
-
-define i32* @foo() {
-; CHECK: foo:
-; CHECK: ldr r0, .L[[POOL:.*]]
-; CHECK-NEXT: .L[[ADDR:.*]]:
-; CHECK-NEXT: add r0, pc, r0
-; CHECK-NEXT: bx lr
-
-; CHECK: .L[[POOL]]:
-; CHECK-NEXT: .long var-(.L[[ADDR]]+8)
-
- ret i32* @var
-}
-
-!llvm.module.flags = !{!0}
-!0 = !{i32 1, !"PIE Level", i32 2}