diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2016-07-23 20:41:05 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2016-07-23 20:41:05 +0000 |
commit | 01095a5d43bbfde13731688ddcf6048ebb8b7721 (patch) | |
tree | 4def12e759965de927d963ac65840d663ef9d1ea /test/CodeGen/SPARC/thread-pointer.ll | |
parent | f0f4822ed4b66e3579e92a89f368f8fb860e218e (diff) |
Diffstat (limited to 'test/CodeGen/SPARC/thread-pointer.ll')
-rw-r--r-- | test/CodeGen/SPARC/thread-pointer.ll | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/CodeGen/SPARC/thread-pointer.ll b/test/CodeGen/SPARC/thread-pointer.ll new file mode 100644 index 0000000000000..33e99aa94747e --- /dev/null +++ b/test/CodeGen/SPARC/thread-pointer.ll @@ -0,0 +1,11 @@ +; RUN: llc < %s -mtriple=sparc-unknown-linux-gnu | FileCheck %s +; RUN: llc < %s -mtriple=sparc64-unknown-linux-gnu | FileCheck %s + +; Function Attrs: nounwind readnone +declare i8* @llvm.thread.pointer() #1 + +define i8* @thread_pointer() { +; CHECK: mov %g7, %o0 + %1 = tail call i8* @llvm.thread.pointer() + ret i8* %1 +} |