[llvm] r186445 - Finally, force the target for this test. Should unbreak non-x86 buildbots.

Benjamin Kramer benny.kra at googlemail.com
Tue Jul 16 12:22:07 PDT 2013


Author: d0k
Date: Tue Jul 16 14:22:07 2013
New Revision: 186445

URL: http://llvm.org/viewvc/llvm-project?rev=186445&view=rev
Log:
Finally, force the target for this test. Should unbreak non-x86 buildbots.

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

Modified: llvm/trunk/test/CodeGen/X86/vec_setcc.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/vec_setcc.ll?rev=186445&r1=186444&r2=186445&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/vec_setcc.ll (original)
+++ llvm/trunk/test/CodeGen/X86/vec_setcc.ll Tue Jul 16 14:22:07 2013
@@ -1,6 +1,6 @@
-; RUN: llc < %s -mcpu=x86-64 -mattr=sse2 | FileCheck %s -check-prefix=SSE2
-; RUN: llc < %s -mcpu=x86-64 -mattr=sse41 | FileCheck %s -check-prefix=SSE41
-; RUN: llc < %s -mcpu=x86-64 -mattr=avx | FileCheck %s -check-prefix=AVX
+; RUN: llc < %s -march=x86-64 -mcpu=x86-64 -mattr=sse2 | FileCheck %s -check-prefix=SSE2
+; RUN: llc < %s -march=x86-64 -mcpu=x86-64 -mattr=sse41 | FileCheck %s -check-prefix=SSE41
+; RUN: llc < %s -march=x86-64 -mcpu=x86-64 -mattr=avx | FileCheck %s -check-prefix=AVX
 
 define <16 x i8> @v16i8_icmp_uge(<16 x i8> %a, <16 x i8> %b) nounwind readnone ssp uwtable {
   %1 = icmp uge <16 x i8> %a, %b





More information about the llvm-commits mailing list