diff options
author | Evan Cheng <evan.cheng@apple.com> | 2009-03-24 00:17:40 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2009-03-24 00:17:40 +0000 |
commit | a774a99245ef272153b0b4dcf17c57a54c12a33f (patch) | |
tree | d7f90f00bd936de2e3bc10195746bdf71e4069c6 /llvm/test/CodeGen | |
parent | 654b07e02988119ae444e1ddd163086d9295f5be (diff) | |
download | bcm5719-llvm-a774a99245ef272153b0b4dcf17c57a54c12a33f.tar.gz bcm5719-llvm-a774a99245ef272153b0b4dcf17c57a54c12a33f.zip |
Do not emit comments unless -asm-verbose.
llvm-svn: 67580
Diffstat (limited to 'llvm/test/CodeGen')
-rw-r--r-- | llvm/test/CodeGen/ARM/constants.ll | 8 | ||||
-rw-r--r-- | llvm/test/CodeGen/ARM/long.ll | 2 | ||||
-rw-r--r-- | llvm/test/CodeGen/X86/2007-06-04-tailmerge4.ll | 2 | ||||
-rw-r--r-- | llvm/test/CodeGen/X86/2008-03-23-DarwinAsmComments.ll | 2 | ||||
-rw-r--r-- | llvm/test/CodeGen/X86/2009-03-16-PHIElimInLPad.ll | 2 |
5 files changed, 8 insertions, 8 deletions
diff --git a/llvm/test/CodeGen/ARM/constants.ll b/llvm/test/CodeGen/ARM/constants.ll index 2d863128a86..095157b592b 100644 --- a/llvm/test/CodeGen/ARM/constants.ll +++ b/llvm/test/CodeGen/ARM/constants.ll @@ -2,11 +2,11 @@ ; RUN: grep {mov r0, #0} | count 1 ; RUN: llvm-as < %s | llc -march=arm | \ ; RUN: grep {mov r0, #255$} | count 1 -; RUN: llvm-as < %s | llc -march=arm | \ +; RUN: llvm-as < %s | llc -march=arm -asm-verbose | \ ; RUN: grep {mov r0.*256} | count 1 -; RUN: llvm-as < %s | llc -march=arm | grep {orr.*256} | count 1 -; RUN: llvm-as < %s | llc -march=arm | grep {mov r0, .*-1073741761} | count 1 -; RUN: llvm-as < %s | llc -march=arm | grep {mov r0, .*1008} | count 1 +; RUN: llvm-as < %s | llc -march=arm -asm-verbose | grep {orr.*256} | count 1 +; RUN: llvm-as < %s | llc -march=arm -asm-verbose | grep {mov r0, .*-1073741761} | count 1 +; RUN: llvm-as < %s | llc -march=arm -asm-verbose | grep {mov r0, .*1008} | count 1 ; RUN: llvm-as < %s | llc -march=arm | grep {cmp r0, #1, 16} | count 1 define i32 @f1() { diff --git a/llvm/test/CodeGen/ARM/long.ll b/llvm/test/CodeGen/ARM/long.ll index 53798ed8262..c7bb3866a5d 100644 --- a/llvm/test/CodeGen/ARM/long.ll +++ b/llvm/test/CodeGen/ARM/long.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=arm | \ +; RUN: llvm-as < %s | llc -march=arm -asm-verbose | \ ; RUN: grep -- {-2147483648} | count 3 ; RUN: llvm-as < %s | llc -march=arm | grep mvn | count 3 ; RUN: llvm-as < %s | llc -march=arm | grep adds | count 1 diff --git a/llvm/test/CodeGen/X86/2007-06-04-tailmerge4.ll b/llvm/test/CodeGen/X86/2007-06-04-tailmerge4.ll index 497a83aa34a..0ad539664c9 100644 --- a/llvm/test/CodeGen/X86/2007-06-04-tailmerge4.ll +++ b/llvm/test/CodeGen/X86/2007-06-04-tailmerge4.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -enable-eh | grep invcont131 +; RUN: llvm-as < %s | llc -enable-eh -asm-verbose | grep invcont131 ; PR 1496: tail merge was incorrectly removing this block ; ModuleID = 'report.1.bc' diff --git a/llvm/test/CodeGen/X86/2008-03-23-DarwinAsmComments.ll b/llvm/test/CodeGen/X86/2008-03-23-DarwinAsmComments.ll index 3d5a86cd243..6cf731b0e9b 100644 --- a/llvm/test/CodeGen/X86/2008-03-23-DarwinAsmComments.ll +++ b/llvm/test/CodeGen/X86/2008-03-23-DarwinAsmComments.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -mtriple=i386-apple-darwin | grep {#} | not grep -v {##} +; RUN: llvm-as < %s | llc -mtriple=i386-apple-darwin -asm-verbose | grep {#} | not grep -v {##} %struct.AGenericCall = type { %struct.AGenericManager*, %struct.ComponentParameters*, i32* } %struct.AGenericManager = type <{ i8 }> diff --git a/llvm/test/CodeGen/X86/2009-03-16-PHIElimInLPad.ll b/llvm/test/CodeGen/X86/2009-03-16-PHIElimInLPad.ll index c079ae73725..091aab41d29 100644 --- a/llvm/test/CodeGen/X86/2009-03-16-PHIElimInLPad.ll +++ b/llvm/test/CodeGen/X86/2009-03-16-PHIElimInLPad.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=x86 | grep -A 1 lpad | grep Llabel +; RUN: llvm-as < %s | llc -march=x86 -asm-verbose | grep -A 1 lpad | grep Llabel ; Check that register copies in the landing pad come after the EH_LABEL declare i32 @f() |