diff options
author | Craig Topper <craig.topper@intel.com> | 2017-12-14 08:25:53 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@intel.com> | 2017-12-14 08:25:53 +0000 |
commit | 271a5c72a0f43f8da540800dba016f5d1337c997 (patch) | |
tree | 6613098ee6e7d256902e533fc32fbbae0919ca97 /llvm | |
parent | 4750c785b3ee77ba0704670c35f29a91f8e4412d (diff) | |
download | bcm5719-llvm-271a5c72a0f43f8da540800dba016f5d1337c997.tar.gz bcm5719-llvm-271a5c72a0f43f8da540800dba016f5d1337c997.zip |
[X86] Remove redundant setOperationAction calls.
These calls already exist earlier under AVX2 feature.
llvm-svn: 320673
Diffstat (limited to 'llvm')
-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 5c400330679..f363cebc94e 100644 --- a/llvm/lib/Target/X86/X86ISelLowering.cpp +++ b/llvm/lib/Target/X86/X86ISelLowering.cpp @@ -1256,8 +1256,6 @@ X86TargetLowering::X86TargetLowering(const X86TargetMachine &TM, setOperationAction(ISD::ZERO_EXTEND, MVT::v16i8, Custom); setOperationAction(ISD::SIGN_EXTEND, MVT::v8i16, Custom); setOperationAction(ISD::ZERO_EXTEND, MVT::v8i16, Custom); - setOperationAction(ISD::SIGN_EXTEND, MVT::v16i16, Custom); - setOperationAction(ISD::ZERO_EXTEND, MVT::v16i16, Custom); for (auto VT : { MVT::v16f32, MVT::v8f64 }) { setOperationAction(ISD::FFLOOR, VT, Legal); |