Jit64/Jit_Integer: Remove dead code in arithXex()

The conditional this code is within already checks whether d == b, so this
conditional will never be true.
This commit is contained in:
Lioncash 2018-03-25 15:32:59 -04:00
parent 5c83e18fbd
commit 7bd41a3b55

View file

@ -1354,8 +1354,6 @@ void Jit64::arithXex(UGeckoInstruction inst)
{
if (!js.carryFlagInverted)
CMC();
if (d != b)
MOV(32, gpr.R(d), gpr.R(b));
SBB(32, gpr.R(d), gpr.R(a));
invertedCarry = true;
}