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/x86-64-arg.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/x86-64-arg.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/x86-64-arg.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/x86-64-arg.ll b/llvm/test/CodeGen/X86/x86-64-arg.ll index b6aa9a193e2..22a095b0d9b 100644 --- a/llvm/test/CodeGen/X86/x86-64-arg.ll +++ b/llvm/test/CodeGen/X86/x86-64-arg.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc | grep {movl %edi, %eax} +; RUN: llvm-as < %s | llc | grep {movl %edi, %eax} ; The input value is already sign extended, don't re-extend it. ; This testcase corresponds to: ; int test(short X) { return (int)X; } |