[llvm-commits] [llvm] r44645 - /llvm/trunk/test/CodeGen/X86/vec_zero_cse.ll

Chris Lattner sabre at nondot.org
Wed Dec 5 17:05:53 PST 2007


Author: lattner
Date: Wed Dec  5 19:05:52 2007
New Revision: 44645

URL: http://llvm.org/viewvc/llvm-project?rev=44645&view=rev
Log:
fix this when run on non x86 hosts.

Modified:
    llvm/trunk/test/CodeGen/X86/vec_zero_cse.ll

Modified: llvm/trunk/test/CodeGen/X86/vec_zero_cse.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/vec_zero_cse.ll?rev=44645&r1=44644&r2=44645&view=diff

==============================================================================
--- llvm/trunk/test/CodeGen/X86/vec_zero_cse.ll (original)
+++ llvm/trunk/test/CodeGen/X86/vec_zero_cse.ll Wed Dec  5 19:05:52 2007
@@ -1,6 +1,6 @@
-; RUN: llvm-as < %s | llc -relocation-model=static -mcpu=yonah | grep pxor | count 1
-; RUN: llvm-as < %s | llc -relocation-model=static -mcpu=yonah | grep xorps | count 1
-; RUN: llvm-as < %s | llc -relocation-model=static -mcpu=yonah | grep pcmpeqd | count 2
+; RUN: llvm-as < %s | llc -relocation-model=static -march=x86 -mcpu=yonah | grep pxor | count 1
+; RUN: llvm-as < %s | llc -relocation-model=static -march=x86 -mcpu=yonah | grep xorps | count 1
+; RUN: llvm-as < %s | llc -relocation-model=static -march=x86 -mcpu=yonah | grep pcmpeqd | count 2
 
 @M1 = external global <1 x i64>
 @M2 = external global <2 x i32>





More information about the llvm-commits mailing list