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:
parent
5c83e18fbd
commit
7bd41a3b55
|
@ -1354,8 +1354,6 @@ void Jit64::arithXex(UGeckoInstruction inst)
|
||||||
{
|
{
|
||||||
if (!js.carryFlagInverted)
|
if (!js.carryFlagInverted)
|
||||||
CMC();
|
CMC();
|
||||||
if (d != b)
|
|
||||||
MOV(32, gpr.R(d), gpr.R(b));
|
|
||||||
SBB(32, gpr.R(d), gpr.R(a));
|
SBB(32, gpr.R(d), gpr.R(a));
|
||||||
invertedCarry = true;
|
invertedCarry = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue