forked from OSchip/llvm-project
Remove unnecessary call to setOperationAction for SETCC of v2i64 under SSE42. It was already called for the same under SSE2.
llvm-svn: 161737
This commit is contained in:
parent
b73da9453c
commit
498228d089
|
@ -1006,9 +1006,6 @@ X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
|
|||
}
|
||||
}
|
||||
|
||||
if (Subtarget->hasSSE42())
|
||||
setOperationAction(ISD::SETCC, MVT::v2i64, Custom);
|
||||
|
||||
if (!TM.Options.UseSoftFloat && Subtarget->hasAVX()) {
|
||||
addRegisterClass(MVT::v32i8, &X86::VR256RegClass);
|
||||
addRegisterClass(MVT::v16i16, &X86::VR256RegClass);
|
||||
|
|
Loading…
Reference in New Issue