diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/tls12.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/tls12.ll | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/X86/tls12.ll b/llvm/test/CodeGen/X86/tls12.ll index 17ea996aa45..b5288391f03 100644 --- a/llvm/test/CodeGen/X86/tls12.ll +++ b/llvm/test/CodeGen/X86/tls12.ll @@ -1,5 +1,7 @@ ; RUN: llvm-as < %s | llc -march=x86 -mtriple=i386-linux-gnu > %t ; RUN: grep {movb %gs:i@NTPOFF, %al} %t +; RUN: llvm-as < %s | llc -march=x86-64 -mtriple=x86_64-linux-gnu > %t2 +; RUN: grep {movb %fs:i@TPOFF, %al} %t2 @i = thread_local global i8 15 |