Jit64: divwx - Simplify divisor == -1 case
Suggested by @MerryMage. Thanks! Co-authored-by: merry <MerryMage@users.noreply.github.com>
This commit is contained in:
parent
83f38388a1
commit
defe7162f5
|
@ -1445,8 +1445,8 @@ void Jit64::divwx(UGeckoInstruction inst)
|
|||
if (d != a)
|
||||
MOV(32, Rd, Ra);
|
||||
|
||||
CMP(32, Rd, Imm32(0x80000000));
|
||||
const FixupBranch normal = J_CC(CC_NE);
|
||||
NEG(32, Rd);
|
||||
const FixupBranch normal = J_CC(CC_NO);
|
||||
|
||||
MOV(32, Rd, Imm32(0xFFFFFFFF));
|
||||
if (inst.OE)
|
||||
|
@ -1454,7 +1454,6 @@ void Jit64::divwx(UGeckoInstruction inst)
|
|||
const FixupBranch done = J();
|
||||
|
||||
SetJumpTarget(normal);
|
||||
NEG(32, Rd);
|
||||
if (inst.OE)
|
||||
GenerateConstantOverflow(false);
|
||||
|
||||
|
|
Loading…
Reference in New Issue