diff options
author | Chris Lattner <sabre@nondot.org> | 2008-04-20 05:47:56 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-04-20 05:47:56 +0000 |
commit | a124f1e21970810ce52ff6478c2ea8224abcadf4 (patch) | |
tree | a018f835eb70b0e48eae2049adfe877b44d36316 | |
parent | 2cc4e232527259dded3e99a1109890b0abd26b80 (diff) | |
download | bcm5719-llvm-a124f1e21970810ce52ff6478c2ea8224abcadf4.tar.gz bcm5719-llvm-a124f1e21970810ce52ff6478c2ea8224abcadf4.zip |
Not all x86-64 machines have sse3 apparently.
llvm-svn: 49985
-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 992d79184b8..990a48b453d 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 | grep {movd.*%rdi, %xmm0} -; RUN: llvm-as < %s | llc -march=x86-64 | not grep xor +; 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 ; PR2108 define <2 x i64> @doload64(i64 %x) nounwind { |