diff --git a/Source/Core/Core/PowerPC/Interpreter/Interpreter_Integer.cpp b/Source/Core/Core/PowerPC/Interpreter/Interpreter_Integer.cpp index 35ecb9f810..555cd7e54b 100644 --- a/Source/Core/Core/PowerPC/Interpreter/Interpreter_Integer.cpp +++ b/Source/Core/Core/PowerPC/Interpreter/Interpreter_Integer.cpp @@ -413,7 +413,7 @@ void Interpreter::tw(UGeckoInstruction _inst) s32 b = m_GPR[_inst.RB]; s32 TO = _inst.TO; - ERROR_LOG(POWERPC, "tw rA %0x rB %0x TO %0x", a, b, TO); + DEBUG_LOG(POWERPC, "tw rA %0x rB %0x TO %0x", a, b, TO); if (((a < b) && (TO & 0x10)) || ((a > b) && (TO & 0x08)) || diff --git a/Source/Core/Core/PowerPC/Jit64/Jit_Integer.cpp b/Source/Core/Core/PowerPC/Jit64/Jit_Integer.cpp index 2e05ce1623..c83bc7f1d0 100644 --- a/Source/Core/Core/PowerPC/Jit64/Jit_Integer.cpp +++ b/Source/Core/Core/PowerPC/Jit64/Jit_Integer.cpp @@ -1999,10 +1999,12 @@ void Jit64::twx(UGeckoInstruction inst) s32 a = inst.RA; + gpr.KillImmediate(a, true, false); + if (inst.OPCD == 3) // twi - CMP(32, gpr.R(a), gpr.R(inst.RB)); - else // tw CMP(32, gpr.R(a), Imm32((s32)(s16)inst.SIMM_16)); + else // tw + CMP(32, gpr.R(a), gpr.R(inst.RB)); std::vector fixups; CCFlags conditions[] = { CC_A, CC_B, CC_E, CC_G, CC_L }; diff --git a/Source/Core/Core/PowerPC/JitArm32/JitArm_Integer.cpp b/Source/Core/Core/PowerPC/JitArm32/JitArm_Integer.cpp index 6e6bdb3b36..0c181c7f07 100644 --- a/Source/Core/Core/PowerPC/JitArm32/JitArm_Integer.cpp +++ b/Source/Core/Core/PowerPC/JitArm32/JitArm_Integer.cpp @@ -915,12 +915,12 @@ void JitArm::twx(UGeckoInstruction inst) if (inst.OPCD == 3) // twi { - CMP(gpr.R(a), gpr.R(inst.RB)); + MOVI2R(RB, (s32)(s16)inst.SIMM_16); + CMP(gpr.R(a), RB); } else // tw { - MOVI2R(RB, (s32)(s16)inst.SIMM_16); - CMP(gpr.R(a), RB); + CMP(gpr.R(a), gpr.R(inst.RB)); } FixupBranch al = B_CC(CC_LT);