diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2009-04-07 21:37:46 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2009-04-07 21:37:46 +0000 |
commit | 2a6411bbbdc6a23605fa206e07fc4f99a3d5dff2 (patch) | |
tree | b9e67793e18fac6ecbadcedde6ed0e19d0b58347 /test/CodeGen | |
parent | 4fd552880c9f42f117bd79929ea0179f99bd6bb7 (diff) | |
download | external_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')
-rw-r--r-- | test/CodeGen/X86/tls10.ll | 4 | ||||
-rw-r--r-- | test/CodeGen/X86/tls2.ll | 4 | ||||
-rw-r--r-- | test/CodeGen/X86/tls6.ll | 4 | ||||
-rw-r--r-- | test/CodeGen/X86/tls8.ll | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/test/CodeGen/X86/tls10.ll b/test/CodeGen/X86/tls10.ll index a4f2fb1..5f022e3 100644 --- a/test/CodeGen/X86/tls10.ll +++ b/test/CodeGen/X86/tls10.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 = external hidden thread_local global i32 diff --git a/test/CodeGen/X86/tls2.ll b/test/CodeGen/X86/tls2.ll index fb57ae1..8edc64f 100644 --- a/test/CodeGen/X86/tls2.ll +++ b/test/CodeGen/X86/tls2.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 = thread_local global i32 15 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 diff --git a/test/CodeGen/X86/tls8.ll b/test/CodeGen/X86/tls8.ll index 4971fd2..fb570b0 100644 --- a/test/CodeGen/X86/tls8.ll +++ b/test/CodeGen/X86/tls8.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 = hidden thread_local global i32 15 |