[llvm] r230881 - make the tested feature (SSE2) explicit

Sanjay Patel spatel at rotateright.com
Sat Feb 28 15:55:24 PST 2015


Author: spatel
Date: Sat Feb 28 17:55:24 2015
New Revision: 230881

URL: http://llvm.org/viewvc/llvm-project?rev=230881&view=rev
Log:
make the tested feature (SSE2) explicit

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

Modified: llvm/trunk/test/CodeGen/X86/vselect.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/vselect.ll?rev=230881&r1=230880&r2=230881&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/vselect.ll (original)
+++ llvm/trunk/test/CodeGen/X86/vselect.ll Sat Feb 28 17:55:24 2015
@@ -1,4 +1,4 @@
-; RUN: llc -mtriple=x86_64-unknown-unknown -mattr=-sse4.1 < %s | FileCheck %s
+; RUN: llc -mtriple=x86_64-unknown-unknown -mattr=+sse2,-sse4.1 < %s | FileCheck %s
 
 ; Verify that we don't emit packed vector shifts instructions if the
 ; condition used by the vector select is a vector of constants.





More information about the llvm-commits mailing list