diff options
author | Craig Topper <craig.topper@intel.com> | 2017-11-28 00:16:42 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@intel.com> | 2017-11-28 00:16:42 +0000 |
commit | ce732e7c30e1b4ac18dfec4b347e486a3a66a8b0 (patch) | |
tree | b9b1c0d7f682ebf88226b73f3f9bcd93bb4ec865 | |
parent | bce112c9e9dbd108b06a01dea2f8f0c0948ba697 (diff) | |
download | bcm5719-llvm-ce732e7c30e1b4ac18dfec4b347e486a3a66a8b0.tar.gz bcm5719-llvm-ce732e7c30e1b4ac18dfec4b347e486a3a66a8b0.zip |
[X86] Remove duplicate calls to setOperationAction. NFCI
These same calls exist a few lines down.
llvm-svn: 319122
-rw-r--r-- | llvm/lib/Target/X86/X86ISelLowering.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp index 3dd265ff0c2..fe5389f07b3 100644 --- a/llvm/lib/Target/X86/X86ISelLowering.cpp +++ b/llvm/lib/Target/X86/X86ISelLowering.cpp @@ -1185,8 +1185,6 @@ X86TargetLowering::X86TargetLowering(const X86TargetMachine &TM, setOperationAction(ISD::FP_TO_UINT, MVT::v4i32, Legal); setOperationAction(ISD::FP_TO_UINT, MVT::v2i32, Custom); setOperationAction(ISD::SINT_TO_FP, MVT::v16i32, Legal); - setOperationAction(ISD::SINT_TO_FP, MVT::v8i1, Custom); - setOperationAction(ISD::SINT_TO_FP, MVT::v16i1, Custom); setOperationAction(ISD::SINT_TO_FP, MVT::v16i8, Promote); setOperationAction(ISD::SINT_TO_FP, MVT::v16i16, Promote); setOperationAction(ISD::UINT_TO_FP, MVT::v16i32, Legal); |