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 | 2bab197bc8aa29904c40a9ed9db4b476d8f12c60 (patch) | |
tree | 1fec18190d21bf460e0e458fd08d030ed9cac6f7 | |
parent | c9e180aaea66d0b167580d911772e4a867a5efae (diff) |
Avoid generating tempfile(s) never used
As DejaGNU is deprecated, it seems pipe-jam issue doesn't exist any more.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@180892 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/X86/vector.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/vector.ll b/test/CodeGen/X86/vector.ll index 46b0e1890f..82d20a23f3 100644 --- a/test/CodeGen/X86/vector.ll +++ b/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> |