[llvm-commits] CVS: llvm/test/Regression/CodeGen/Generic/vector.ll
Chris Lattner
lattner at cs.uiuc.edu
Thu Apr 13 10:10:15 PDT 2006
Changes in directory llvm/test/Regression/CodeGen/Generic:
vector.ll updated: 1.9 -> 1.10
---
Log message:
Add a run with an unusual target triple, revert the patch that sent output to
dev null as it broke the test and doesn't add anything.
---
Diffs of the changes: (+6 -5)
vector.ll | 11 ++++++-----
1 files changed, 6 insertions(+), 5 deletions(-)
Index: llvm/test/Regression/CodeGen/Generic/vector.ll
diff -u llvm/test/Regression/CodeGen/Generic/vector.ll:1.9 llvm/test/Regression/CodeGen/Generic/vector.ll:1.10
--- llvm/test/Regression/CodeGen/Generic/vector.ll:1.9 Wed Apr 12 16:03:04 2006
+++ llvm/test/Regression/CodeGen/Generic/vector.ll Thu Apr 13 12:10:03 2006
@@ -1,9 +1,10 @@
; Test that vectors are scalarized/lowered correctly.
-; RUN: llvm-as < %s | llc > /dev/null &&
-; RUN: llvm-as < %s | llc -march=ppc32 -mcpu=g5 > /dev/null &&
-; RUN: llvm-as < %s | llc -march=ppc32 -mcpu=g3 > /dev/null &&
-; RUN: llvm-as < %s | llc -march=x86 -mcpu=i386 > /dev/null &&
-; RUN: llvm-as < %s | llc -march=x86 -mcpu=yonah -o /dev/null
+; RUN: llvm-as < %s | llc &&
+; RUN: llvm-as < %s | llc -mtriple a-b-c &&
+; RUN: llvm-as < %s | llc -march=ppc32 -mcpu=g5 &&
+; RUN: llvm-as < %s | llc -march=ppc32 -mcpu=g3 &&
+; RUN: llvm-as < %s | llc -march=x86 -mcpu=i386 &&
+; RUN: llvm-as < %s | llc -march=x86 -mcpu=yonah
%f1 = type <1 x float>
%f2 = type <2 x float>
More information about the llvm-commits
mailing list