diff options
author | Dan Gohman <gohman@apple.com> | 2007-07-31 20:11:57 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2007-07-31 20:11:57 +0000 |
commit | 54ec4bfa5f5fb11a21a10edbe2788fe816b40911 (patch) | |
tree | 6c88320df33ca4401ebd33ed6d73d824eac2a944 /llvm/test/CodeGen/X86/tls2.ll | |
parent | 87801e8773d17f1867e56ebd8bd991a027f846b3 (diff) | |
download | bcm5719-llvm-54ec4bfa5f5fb11a21a10edbe2788fe816b40911.tar.gz bcm5719-llvm-54ec4bfa5f5fb11a21a10edbe2788fe816b40911.zip |
Change the x86 assembly output to use tab characters to separate the
mnemonics from their operands instead of single spaces. This makes the
assembly output a little more consistent with various other compilers
(f.e. GCC), and slightly easier to read. Also, update the regression
tests accordingly.
llvm-svn: 40648
Diffstat (limited to 'llvm/test/CodeGen/X86/tls2.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/tls2.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/X86/tls2.ll b/llvm/test/CodeGen/X86/tls2.ll index 50e2ba6b6bc..c9b73fba8c7 100644 --- a/llvm/test/CodeGen/X86/tls2.ll +++ b/llvm/test/CodeGen/X86/tls2.ll @@ -1,9 +1,9 @@ ; RUN: llvm-as < %s | llc -march=x86 -mtriple=i386-linux-gnu | \ -; RUN: grep {movl %gs:(%eax), %eax} +; RUN: grep {movl %gs:(%eax), %eax} ; RUN: llvm-as < %s | llc -march=x86 -mtriple=i386-linux-gnu | \ -; RUN: grep {addl i@INDNTPOFF, %eax} +; RUN: grep {addl i@INDNTPOFF, %eax} ; RUN: llvm-as < %s | llc -march=x86 -mtriple=i386-linux-gnu -relocation-model=pic | \ -; RUN: grep {leal i@TLSGD(,%ebx,1), %eax} +; RUN: grep {leal i@TLSGD(,%ebx,1), %eax} @i = external thread_local global i32 ; <i32*> [#uses=2] |