Skip to content

Commit

Permalink
Merge pull request #2043 from Tilka/fix_jump
Browse files Browse the repository at this point in the history
Jit64: turn short jmp into near jmp
  • Loading branch information
FioraAeterna committed Feb 13, 2015
2 parents 6797718 + d33e760 commit 9761df4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/PowerPC/Jit64/JitAsm.cpp
Expand Up @@ -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();
Expand Down

0 comments on commit 9761df4

Please sign in to comment.