summaryrefslogtreecommitdiff
path: root/lib/Target/X86
diff options
context:
space:
mode:
authorNadav Rotem <nadav.rotem@intel.com>2011-09-18 14:57:03 +0000
committerNadav Rotem <nadav.rotem@intel.com>2011-09-18 14:57:03 +0000
commit354efd88db96c9662d41c1e154fdee37324802db (patch)
treef6dc5fcb1ab033d09ece49995cd01b3da459b18f /lib/Target/X86
parentbed95e01ffacb5ad9fc8169b98711b1a3e1af9da (diff)
downloadllvm-354efd88db96c9662d41c1e154fdee37324802db.tar.gz
llvm-354efd88db96c9662d41c1e154fdee37324802db.tar.bz2
llvm-354efd88db96c9662d41c1e154fdee37324802db.tar.xz
setOperationAction should be done on the return value of the type, not the operands.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140001 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86')
-rw-r--r--lib/Target/X86/X86ISelLowering.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86ISelLowering.cpp b/lib/Target/X86/X86ISelLowering.cpp
index adf5098e2e..cc904d9a1d 100644
--- a/lib/Target/X86/X86ISelLowering.cpp
+++ b/lib/Target/X86/X86ISelLowering.cpp
@@ -821,7 +821,7 @@ X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
setOperationAction(ISD::FNEG, MVT::v2f64, Custom);
- setOperationAction(ISD::SETCC, MVT::v2f64, Custom);
+ setOperationAction(ISD::SETCC, MVT::v2i64, Custom);
setOperationAction(ISD::SETCC, MVT::v16i8, Custom);
setOperationAction(ISD::SETCC, MVT::v8i16, Custom);
setOperationAction(ISD::SETCC, MVT::v4i32, Custom);