diff options
author | Bill Wendling <isanbard@gmail.com> | 2009-04-07 22:35:25 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2009-04-07 22:35:25 +0000 |
commit | 044b5344c4a97b3c709a05b9c5f9296656477652 (patch) | |
tree | de634d239ef90cb8c9266748034310ab785b3c37 /test/CodeGen | |
parent | caf6129aba729cc6b085e3271c94af6fb33baf4d (diff) | |
download | external_llvm-044b5344c4a97b3c709a05b9c5f9296656477652.zip external_llvm-044b5344c4a97b3c709a05b9c5f9296656477652.tar.gz external_llvm-044b5344c4a97b3c709a05b9c5f9296656477652.tar.bz2 |
Temporarily revert r68552. This was causing a failure in the self-hosting LLVM
builds.
--- Reverse-merging (from foreign repository) r68552 into '.':
U test/CodeGen/X86/tls8.ll
U test/CodeGen/X86/tls10.ll
U test/CodeGen/X86/tls2.ll
U test/CodeGen/X86/tls6.ll
U lib/Target/X86/X86Instr64bit.td
U lib/Target/X86/X86InstrSSE.td
U lib/Target/X86/X86InstrInfo.td
U lib/Target/X86/X86RegisterInfo.cpp
U lib/Target/X86/X86ISelLowering.cpp
U lib/Target/X86/X86CodeEmitter.cpp
U lib/Target/X86/X86FastISel.cpp
U lib/Target/X86/X86InstrInfo.h
U lib/Target/X86/X86ISelDAGToDAG.cpp
U lib/Target/X86/AsmPrinter/X86ATTAsmPrinter.cpp
U lib/Target/X86/AsmPrinter/X86IntelAsmPrinter.cpp
U lib/Target/X86/AsmPrinter/X86ATTAsmPrinter.h
U lib/Target/X86/AsmPrinter/X86IntelAsmPrinter.h
U lib/Target/X86/X86ISelLowering.h
U lib/Target/X86/X86InstrInfo.cpp
U lib/Target/X86/X86InstrBuilder.h
U lib/Target/X86/X86RegisterInfo.td
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@68560 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 5f022e3..a4f2fb1 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 \$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 = external hidden thread_local global i32 diff --git a/test/CodeGen/X86/tls2.ll b/test/CodeGen/X86/tls2.ll index 8edc64f..fb57ae1 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 \$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 = thread_local global i32 15 diff --git a/test/CodeGen/X86/tls6.ll b/test/CodeGen/X86/tls6.ll index fc10a57..e0bcade 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 \$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 = internal thread_local global i32 15 diff --git a/test/CodeGen/X86/tls8.ll b/test/CodeGen/X86/tls8.ll index fb570b0..4971fd2 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 \$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 |