From d33e760c55f49c8b375bb29a59f9920b4a83869b Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Fri, 13 Feb 2015 07:51:34 +0100 Subject: [PATCH] Jit64: turn short jmp into near jmp Fixes a regression from #1856's ac54c6a. --- Source/Core/Core/PowerPC/Jit64/JitAsm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/PowerPC/Jit64/JitAsm.cpp b/Source/Core/Core/PowerPC/Jit64/JitAsm.cpp index f50aa15011..a8d2445eb2 100644 --- a/Source/Core/Core/PowerPC/Jit64/JitAsm.cpp +++ b/Source/Core/Core/PowerPC/Jit64/JitAsm.cpp @@ -189,7 +189,7 @@ void Jit64AsmRoutineManager::Generate() // Jit might have cleared the code cache ResetStack(); - JMP(dispatcherNoCheck); // no point in special casing this + JMP(dispatcherNoCheck, true); // no point in special casing this SetJumpTarget(bail); doTiming = GetCodePtr();