[llvm-commits] [llvm] r48296 - /llvm/trunk/test/CodeGen/X86/all-ones-vector.ll
Dan Gohman
gohman at apple.com
Wed Mar 12 13:40:52 PDT 2008
Author: djg
Date: Wed Mar 12 15:40:51 2008
New Revision: 48296
URL: http://llvm.org/viewvc/llvm-project?rev=48296&view=rev
Log:
Fix this test on hosts that don't have sse2.
Modified:
llvm/trunk/test/CodeGen/X86/all-ones-vector.ll
Modified: llvm/trunk/test/CodeGen/X86/all-ones-vector.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/all-ones-vector.ll?rev=48296&r1=48295&r2=48296&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/all-ones-vector.ll (original)
+++ llvm/trunk/test/CodeGen/X86/all-ones-vector.ll Wed Mar 12 15:40:51 2008
@@ -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>
More information about the llvm-commits
mailing list