aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/tls6.ll
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2009-04-07 21:37:46 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2009-04-07 21:37:46 +0000
commit2a6411bbbdc6a23605fa206e07fc4f99a3d5dff2 (patch)
treeb9e67793e18fac6ecbadcedde6ed0e19d0b58347 /test/CodeGen/X86/tls6.ll
parent4fd552880c9f42f117bd79929ea0179f99bd6bb7 (diff)
downloadexternal_llvm-2a6411bbbdc6a23605fa206e07fc4f99a3d5dff2.zip
external_llvm-2a6411bbbdc6a23605fa206e07fc4f99a3d5dff2.tar.gz
external_llvm-2a6411bbbdc6a23605fa206e07fc4f99a3d5dff2.tar.bz2
Reduce code duplication on the TLS implementation.
This introduces a small regression on the generated code quality in the case we are just computing addresses, not loading values. Will work on it and on X86-64 support. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@68552 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/tls6.ll')
-rw-r--r--test/CodeGen/X86/tls6.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/tls6.ll b/test/CodeGen/X86/tls6.ll
index e0bcade..fc10a57 100644
--- a/test/CodeGen/X86/tls6.ll
+++ b/test/CodeGen/X86/tls6.ll
@@ -1,6 +1,6 @@
; RUN: llvm-as < %s | llc -march=x86 -mtriple=i386-linux-gnu > %t
-; RUN: grep {movl %gs:0, %eax} %t
-; RUN: grep {leal i@NTPOFF(%eax), %eax} %t
+; RUN: grep {movl \$i@NTPOFF, %eax} %t
+; RUN: grep {addl %gs:0, %eax} %t
@i = internal thread_local global i32 15