diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2009-04-24 12:40:33 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2009-04-24 12:40:33 +0000 |
commit | b93db668b3f31451a6a4956b5a58decac308a48f (patch) | |
tree | e5001a54441fd97f335833f81a34444e7901e259 /llvm/test/CodeGen/X86/vec_shuffle-10.ll | |
parent | 40493eb6ebc7fd1090a30f62c1eb04e33ebe1100 (diff) | |
download | bcm5719-llvm-b93db668b3f31451a6a4956b5a58decac308a48f.tar.gz bcm5719-llvm-b93db668b3f31451a6a4956b5a58decac308a48f.zip |
Revert 69952. Causes testsuite failures on linux x86-64.
llvm-svn: 69967
Diffstat (limited to 'llvm/test/CodeGen/X86/vec_shuffle-10.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/vec_shuffle-10.ll | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/llvm/test/CodeGen/X86/vec_shuffle-10.ll b/llvm/test/CodeGen/X86/vec_shuffle-10.ll index 297469d9202..45789b04bb6 100644 --- a/llvm/test/CodeGen/X86/vec_shuffle-10.ll +++ b/llvm/test/CodeGen/X86/vec_shuffle-10.ll @@ -1,7 +1,9 @@ -; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 -o %t -f -; RUN: grep unpcklps %t | count 1 -; RUN: grep pshufd %t | count 1 -; RUN: not grep {sub.*esp} %t +; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | \ +; RUN: grep unpcklps | count 1 +; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | \ +; RUN: grep unpckhps | count 1 +; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | \ +; RUN: not grep {sub.*esp} define void @test(<4 x float>* %res, <4 x float>* %A, <4 x float>* %B) { %tmp = load <4 x float>* %B ; <<4 x float>> [#uses=2] |