diff options
author | Michael Liao <michael.liao@intel.com> | 2013-05-01 22:46:50 +0000 |
---|---|---|
committer | Michael Liao <michael.liao@intel.com> | 2013-05-01 22:46:50 +0000 |
commit | d2d42f1b2d4cb3f7e2f4ce5e60f7928f5302c514 (patch) | |
tree | f29fd176e849046a219c6707648225147b4aa90d /llvm/test/CodeGen/X86/vector.ll | |
parent | c65a6d7630480bae7175f4a0a72691ca2c241e36 (diff) | |
download | bcm5719-llvm-d2d42f1b2d4cb3f7e2f4ce5e60f7928f5302c514.tar.gz bcm5719-llvm-d2d42f1b2d4cb3f7e2f4ce5e60f7928f5302c514.zip |
Avoid generating tempfile(s) never used
As DejaGNU is deprecated, it seems pipe-jam issue doesn't exist any more.
llvm-svn: 180892
Diffstat (limited to 'llvm/test/CodeGen/X86/vector.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/vector.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/X86/vector.ll b/llvm/test/CodeGen/X86/vector.ll index 46b0e1890f1..82d20a23f35 100644 --- a/llvm/test/CodeGen/X86/vector.ll +++ b/llvm/test/CodeGen/X86/vector.ll @@ -1,6 +1,6 @@ ; Test that vectors are scalarized/lowered correctly. -; RUN: llc < %s -march=x86 -mcpu=i386 > %t -; RUN: llc < %s -march=x86 -mcpu=yonah >> %t +; RUN: llc < %s -march=x86 -mcpu=i386 +; RUN: llc < %s -march=x86 -mcpu=yonah %d8 = type <8 x double> %f1 = type <1 x float> |