[llvm-commits] [llvm] r134814 - /llvm/trunk/test/CodeGen/X86/vector.ll
NAKAMURA Takumi
geek4civic at gmail.com
Sat Jul 9 03:22:28 PDT 2011
Author: chapuni
Date: Sat Jul 9 05:22:28 2011
New Revision: 134814
URL: http://llvm.org/viewvc/llvm-project?rev=134814&view=rev
Log:
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.
Modified:
llvm/trunk/test/CodeGen/X86/vector.ll
Modified: llvm/trunk/test/CodeGen/X86/vector.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/vector.ll?rev=134814&r1=134813&r2=134814&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/vector.ll (original)
+++ llvm/trunk/test/CodeGen/X86/vector.ll Sat Jul 9 05:22:28 2011
@@ -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>
More information about the llvm-commits
mailing list