diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-07-09 10:22:28 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-07-09 10:22:28 +0000 |
commit | 9c6a679d3b0adb4a0f7ed28d70c774627375aa07 (patch) | |
tree | 2d0690dbb65626ae05710f4d14675d715e26d29c | |
parent | c2f0001c806d4c27cb8e7820e34a7f5e8a734921 (diff) | |
download | bcm5719-llvm-9c6a679d3b0adb4a0f7ed28d70c774627375aa07.tar.gz bcm5719-llvm-9c6a679d3b0adb4a0f7ed28d70c774627375aa07.zip |
test/CodeGen/X86/vector.ll: Tweak temporary output to appease Win32 hosts.
With Lit (not bash) in a test, multiple redirects >%t might open(%t, "w") multiple. It can be avoided if latter redirect is >>%t.
It might work even if ">/dev/null" were used.
llvm-svn: 134814
-rw-r--r-- | llvm/test/CodeGen/X86/vector.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/vector.ll b/llvm/test/CodeGen/X86/vector.ll index 3fff8497dfd..46b0e1890f1 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=yonah >> %t %d8 = type <8 x double> %f1 = type <1 x float> |