aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/Mips/thread-pointer.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/Mips/thread-pointer.ll')
-rw-r--r--test/CodeGen/Mips/thread-pointer.ll12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/CodeGen/Mips/thread-pointer.ll b/test/CodeGen/Mips/thread-pointer.ll
deleted file mode 100644
index 60bee3d03031..000000000000
--- a/test/CodeGen/Mips/thread-pointer.ll
+++ /dev/null
@@ -1,12 +0,0 @@
-; RUN: llc -march=mips < %s | FileCheck %s
-; RUN: llc -march=mips64 < %s | FileCheck %s
-; RUN: llc -march=mipsel < %s | FileCheck %s
-; RUN: llc -march=mips64el < %s | FileCheck %s
-
-declare i8* @llvm.thread.pointer() nounwind readnone
-
-define i8* @thread_pointer() {
-; CHECK: rdhwr $3, $29
- %1 = tail call i8* @llvm.thread.pointer()
- ret i8* %1
-}