diff options
author | Dan Gohman <gohman@apple.com> | 2008-06-10 00:36:41 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-06-10 00:36:41 +0000 |
commit | 1b095b443c7d57331eaf52f4069dccdedbc6046f (patch) | |
tree | c853b1ce6e9182e8ee07381ffd045f25f724f6e4 /llvm/test/CodeGen/X86/vec_logical.ll | |
parent | d0c1df4c84a7d64ee2a035394ca8ac2fb20faefa (diff) | |
download | bcm5719-llvm-1b095b443c7d57331eaf52f4069dccdedbc6046f.tar.gz bcm5719-llvm-1b095b443c7d57331eaf52f4069dccdedbc6046f.zip |
Convert several tests to use temporary files instead of redundantly
executing the test commands.
llvm-svn: 52163
Diffstat (limited to 'llvm/test/CodeGen/X86/vec_logical.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/vec_logical.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/test/CodeGen/X86/vec_logical.ll b/llvm/test/CodeGen/X86/vec_logical.ll index cf45a4a6709..6e03afb94a8 100644 --- a/llvm/test/CodeGen/X86/vec_logical.ll +++ b/llvm/test/CodeGen/X86/vec_logical.ll @@ -1,7 +1,7 @@ -; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 -; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | grep xorps | count 2 -; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | grep andnps -; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | grep movaps | count 2 +; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 > %t +; RUN: grep xorps %t | count 2 +; RUN: grep andnps %t +; RUN: grep movaps %t | count 2 define void @t(<4 x float> %A) { %tmp1277 = sub <4 x float> < float -0.000000e+00, float -0.000000e+00, float -0.000000e+00, float -0.000000e+00 >, %A |