diff options
author | Chris Lattner <sabre@nondot.org> | 2008-04-20 05:52:46 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-04-20 05:52:46 +0000 |
commit | 470ab00c76a0c9a8043c6b328947f6fb61cf95cc (patch) | |
tree | a6bac78ab8e44ffb675aafb19a663d40a9c3ea30 /llvm/test/CodeGen | |
parent | a124f1e21970810ce52ff6478c2ea8224abcadf4 (diff) | |
download | bcm5719-llvm-470ab00c76a0c9a8043c6b328947f6fb61cf95cc.tar.gz bcm5719-llvm-470ab00c76a0c9a8043c6b328947f6fb61cf95cc.zip |
A better fix for my previous patch, MOVZQI2PQIrr just requires SSE2.
llvm-svn: 49986
Diffstat (limited to 'llvm/test/CodeGen')
-rw-r--r-- | llvm/test/CodeGen/X86/vec_shuffle-17.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/X86/vec_shuffle-17.ll b/llvm/test/CodeGen/X86/vec_shuffle-17.ll index 990a48b453d..992d79184b8 100644 --- a/llvm/test/CodeGen/X86/vec_shuffle-17.ll +++ b/llvm/test/CodeGen/X86/vec_shuffle-17.ll @@ -1,5 +1,5 @@ -; RUN: llvm-as < %s | llc -march=x86-64 -mattr=+sse3 | grep {movd.*%rdi, %xmm0} -; RUN: llvm-as < %s | llc -march=x86-64 -mattr=+sse3 | not grep xor +; RUN: llvm-as < %s | llc -march=x86-64 | grep {movd.*%rdi, %xmm0} +; RUN: llvm-as < %s | llc -march=x86-64 | not grep xor ; PR2108 define <2 x i64> @doload64(i64 %x) nounwind { |