From: Craig Topper Date: Sun, 12 Aug 2012 05:31:32 +0000 (+0000) Subject: Remove call to setOperationAction for SETCC of v4f32. SETCC returns an integer type... X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2c63d5e8c23cc60859130ead8e3b203d3cdda346;p=oota-llvm.git Remove call to setOperationAction for SETCC of v4f32. SETCC returns an integer type not an FP type. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@161738 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/X86/X86ISelLowering.cpp b/lib/Target/X86/X86ISelLowering.cpp index d9a732ab4cd..f623e3bd2f2 100644 --- a/lib/Target/X86/X86ISelLowering.cpp +++ b/lib/Target/X86/X86ISelLowering.cpp @@ -829,7 +829,6 @@ X86TargetLowering::X86TargetLowering(X86TargetMachine &TM) setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f32, Custom); setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom); setOperationAction(ISD::SELECT, MVT::v4f32, Custom); - setOperationAction(ISD::SETCC, MVT::v4f32, Custom); } if (!TM.Options.UseSoftFloat && Subtarget->hasSSE2()) {