diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/tls8.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/tls8.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/X86/tls8.ll b/llvm/test/CodeGen/X86/tls8.ll index fb570b0118e..4971fd23ba6 100644 --- a/llvm/test/CodeGen/X86/tls8.ll +++ b/llvm/test/CodeGen/X86/tls8.ll @@ -1,6 +1,6 @@ ; RUN: llvm-as < %s | llc -march=x86 -mtriple=i386-linux-gnu > %t -; RUN: grep {movl \$i@NTPOFF, %eax} %t -; RUN: grep {addl %gs:0, %eax} %t +; RUN: grep {movl %gs:0, %eax} %t +; RUN: grep {leal i@NTPOFF(%eax), %eax} %t @i = hidden thread_local global i32 15 |