aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/tls2.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/ARM/tls2.ll')
-rw-r--r--test/CodeGen/ARM/tls2.ll27
1 files changed, 0 insertions, 27 deletions
diff --git a/test/CodeGen/ARM/tls2.ll b/test/CodeGen/ARM/tls2.ll
deleted file mode 100644
index d522da8f5714..000000000000
--- a/test/CodeGen/ARM/tls2.ll
+++ /dev/null
@@ -1,27 +0,0 @@
-; RUN: llc < %s -march=arm -mtriple=arm-linux-gnueabi \
-; RUN: | FileCheck %s -check-prefix=CHECK-NONPIC
-; RUN: llc < %s -march=arm -mtriple=arm-linux-gnueabi \
-; RUN: -relocation-model=pic | FileCheck %s -check-prefix=CHECK-PIC
-
-@i = external thread_local global i32 ; <i32*> [#uses=2]
-
-define i32 @f() {
-; CHECK-NONPIC-LABEL: f:
-; CHECK-NONPIC: ldr {{r.}}, [pc, {{r.}}]
-; CHECK-NONPIC: i(GOTTPOFF)
-; CHECK-PIC-LABEL: f:
-; CHECK-PIC: __tls_get_addr
-entry:
- %tmp1 = load i32, i32* @i ; <i32> [#uses=1]
- ret i32 %tmp1
-}
-
-define i32* @g() {
-; CHECK-NONPIC-LABEL: g:
-; CHECK-NONPIC: ldr {{r.}}, [pc, {{r.}}]
-; CHECK-NONPIC: i(GOTTPOFF)
-; CHECK-PIC-LABEL: g:
-; CHECK-PIC: __tls_get_addr
-entry:
- ret i32* @i
-}