[llvm-commits] [llvm] r162983 - /llvm/trunk/test/CodeGen/X86/vec_select.ll

NAKAMURA Takumi geek4civic at gmail.com
Fri Aug 31 03:02:22 PDT 2012


Author: chapuni
Date: Fri Aug 31 05:02:22 2012
New Revision: 162983

URL: http://llvm.org/viewvc/llvm-project?rev=162983&view=rev
Log:
llvm/test/CodeGen/X86/vec_select.ll: Fix failure on xmm-less hosts, to add -mattr=+sse2.

FIXME: Should this be tested with both +avx and -avx,+sse2?

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

Modified: llvm/trunk/test/CodeGen/X86/vec_select.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/vec_select.ll?rev=162983&r1=162982&r2=162983&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/vec_select.ll (original)
+++ llvm/trunk/test/CodeGen/X86/vec_select.ll Fri Aug 31 05:02:22 2012
@@ -1,4 +1,4 @@
-; RUN: llc < %s -march=x86 | FileCheck %s
+; RUN: llc < %s -march=x86 -mattr=+sse2 | FileCheck %s
 
 ; When legalizing the v4i1 constant, we need to consider the boolean contents
 ; For x86 a boolean vector constant is all ones so the constants in memory





More information about the llvm-commits mailing list