[llvm-commits] CVS: llvm/test/Regression/CodeGen/X86/vec_ins_extract.ll

Chris Lattner sabre at nondot.org
Sun Dec 10 17:03:47 PST 2006



Changes in directory llvm/test/Regression/CodeGen/X86:

vec_ins_extract.ll updated: 1.1 -> 1.2
---
Log message:

the xform is done by scalarrepl not the code generator.


---
Diffs of the changes:  (+2 -3)

 vec_ins_extract.ll |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)


Index: llvm/test/Regression/CodeGen/X86/vec_ins_extract.ll
diff -u llvm/test/Regression/CodeGen/X86/vec_ins_extract.ll:1.1 llvm/test/Regression/CodeGen/X86/vec_ins_extract.ll:1.2
--- llvm/test/Regression/CodeGen/X86/vec_ins_extract.ll:1.1	Wed Jun 14 16:24:57 2006
+++ llvm/test/Regression/CodeGen/X86/vec_ins_extract.ll	Sun Dec 10 19:03:32 2006
@@ -1,9 +1,8 @@
-; RUN: llvm-as< %s | llc -march=x86 -mcpu=yonah &&
-; RUN: llvm-as< %s | llc -march=x86 -mcpu=yonah | not grep sub.*esp
+; RUN: llvm-as< %s | opt -scalarrepl -instcombine | llc -march=x86 -mcpu=yonah &&
+; RUN: llvm-as< %s | opt -scalarrepl -instcombine | llc -march=x86 -mcpu=yonah | not grep sub.*esp
 
 ; This checks that various insert/extract idiom work without going to the 
 ; stack.
-; XFAIL: *
 
 void %test(<4 x float>* %F, float %f) {
 entry:






More information about the llvm-commits mailing list