diff options
| author | Reid Spencer <rspencer@reidspencer.com> | 2006-04-12 21:03:04 +0000 |
|---|---|---|
| committer | Reid Spencer <rspencer@reidspencer.com> | 2006-04-12 21:03:04 +0000 |
| commit | 757923753694d2253991aaab5d830620bb3162ef (patch) | |
| tree | 89e7c990f3d412da708087ee35f0767a554ea0a5 | |
| parent | 7c8fef2cd13fd5c29adefac17500272530dff75d (diff) | |
| download | bcm5719-llvm-757923753694d2253991aaab5d830620bb3162ef.tar.gz bcm5719-llvm-757923753694d2253991aaab5d830620bb3162ef.zip | |
Don't dump the llc assembly output to stdout.
llvm-svn: 27631
| -rw-r--r-- | llvm/test/Regression/CodeGen/Generic/vector.ll | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/test/Regression/CodeGen/Generic/vector.ll b/llvm/test/Regression/CodeGen/Generic/vector.ll index 37bc1c68bf5..244f7da2585 100644 --- a/llvm/test/Regression/CodeGen/Generic/vector.ll +++ b/llvm/test/Regression/CodeGen/Generic/vector.ll @@ -1,9 +1,9 @@ ; Test that vectors are scalarized/lowered correctly. -; RUN: llvm-as < %s | llc && -; RUN: llvm-as < %s | llc -march=ppc32 -mcpu=g5 && -; RUN: llvm-as < %s | llc -march=ppc32 -mcpu=g3 && -; RUN: llvm-as < %s | llc -march=x86 -mcpu=i386 && -; RUN: llvm-as < %s | llc -march=x86 -mcpu=yonah +; RUN: llvm-as < %s | llc > /dev/null && +; RUN: llvm-as < %s | llc -march=ppc32 -mcpu=g5 > /dev/null && +; RUN: llvm-as < %s | llc -march=ppc32 -mcpu=g3 > /dev/null && +; RUN: llvm-as < %s | llc -march=x86 -mcpu=i386 > /dev/null && +; RUN: llvm-as < %s | llc -march=x86 -mcpu=yonah -o /dev/null %f1 = type <1 x float> %f2 = type <2 x float> |

