mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-31 10:34:17 +00:00
X86: revert unintentional change to X86FastISel.
This crept in with r212443. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@212459 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5ba71b01d8
commit
a15d70370e
@ -2402,7 +2402,7 @@ bool X86FastISel::X86VisitIntrinsicCall(const IntrinsicInst &I) {
|
|||||||
case Intrinsic::usub_with_overflow:
|
case Intrinsic::usub_with_overflow:
|
||||||
BaseOpc = ISD::SUB; CondOpc = X86::SETBr; break;
|
BaseOpc = ISD::SUB; CondOpc = X86::SETBr; break;
|
||||||
case Intrinsic::smul_with_overflow:
|
case Intrinsic::smul_with_overflow:
|
||||||
BaseOpc = X86ISD::SMUL; CondOpc = X86::SETOr; break;
|
BaseOpc = ISD::MUL; CondOpc = X86::SETOr; break;
|
||||||
case Intrinsic::umul_with_overflow:
|
case Intrinsic::umul_with_overflow:
|
||||||
BaseOpc = X86ISD::UMUL; CondOpc = X86::SETOr; break;
|
BaseOpc = X86ISD::UMUL; CondOpc = X86::SETOr; break;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user