diff options
author | Chris Lattner <sabre@nondot.org> | 2006-12-11 01:03:32 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-12-11 01:03:32 +0000 |
commit | e9c430c5d89fb67b0f4e34a3dced6ddded428298 (patch) | |
tree | 6ac7d101d14b2c9d918f2029e2fa6ae57093204d | |
parent | 6727f2a5f99763f888294054bc9b4d7210b0a683 (diff) | |
download | bcm5719-llvm-e9c430c5d89fb67b0f4e34a3dced6ddded428298.tar.gz bcm5719-llvm-e9c430c5d89fb67b0f4e34a3dced6ddded428298.zip |
the xform is done by scalarrepl not the code generator.
llvm-svn: 32425
-rw-r--r-- | llvm/test/Regression/CodeGen/X86/vec_ins_extract.ll | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/test/Regression/CodeGen/X86/vec_ins_extract.ll b/llvm/test/Regression/CodeGen/X86/vec_ins_extract.ll index 08fb8931dc3..eee8d22ebba 100644 --- a/llvm/test/Regression/CodeGen/X86/vec_ins_extract.ll +++ b/llvm/test/Regression/CodeGen/X86/vec_ins_extract.ll @@ -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: |