diff --git a/Source/Core/Core/PowerPC/Jit64/Jit_Integer.cpp b/Source/Core/Core/PowerPC/Jit64/Jit_Integer.cpp index 1db3836dab..c6b6ba6ddc 100644 --- a/Source/Core/Core/PowerPC/Jit64/Jit_Integer.cpp +++ b/Source/Core/Core/PowerPC/Jit64/Jit_Integer.cpp @@ -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);