aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-03-12 20:40:51 +0000
committerDan Gohman <gohman@apple.com>2008-03-12 20:40:51 +0000
commit89964b4ca1e631a4a4f51e6de1bb7feb4b781c93 (patch)
tree09414d5a50ddd6824828d72cf5416d50cd4ebaae
parent87a8615015ad85f1a95f79da221c7da9428d2208 (diff)
downloadexternal_llvm-89964b4ca1e631a4a4f51e6de1bb7feb4b781c93.zip
external_llvm-89964b4ca1e631a4a4f51e6de1bb7feb4b781c93.tar.gz
external_llvm-89964b4ca1e631a4a4f51e6de1bb7feb4b781c93.tar.bz2
Fix this test on hosts that don't have sse2.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48296 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGen/X86/all-ones-vector.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/all-ones-vector.ll b/test/CodeGen/X86/all-ones-vector.ll
index a79002b..5709d79 100644
--- a/test/CodeGen/X86/all-ones-vector.ll
+++ b/test/CodeGen/X86/all-ones-vector.ll
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | llc -march=x86 | grep pcmpeqd | count 4
+; RUN: llvm-as < %s | llc -march=x86 -mattr=sse2 | grep pcmpeqd | count 4
define <4 x i32> @ioo() {
ret <4 x i32> <i32 -1, i32 -1, i32 -1, i32 -1>