mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 07:09:48 -06:00
Jit_Branch: bcx
This commit is contained in:
@ -160,9 +160,13 @@ void Jit64::bcx(UGeckoInstruction inst)
|
|||||||
else
|
else
|
||||||
destination = js.compilerPC + SignExt16(inst.BD << 2);
|
destination = js.compilerPC + SignExt16(inst.BD << 2);
|
||||||
|
|
||||||
gpr.Flush(RegCache::FlushMode::MaintainState);
|
{
|
||||||
fpr.Flush(RegCache::FlushMode::MaintainState);
|
RCForkGuard gpr_guard = gpr.Fork();
|
||||||
WriteExit(destination, inst.LK, js.compilerPC + 4);
|
RCForkGuard fpr_guard = fpr.Fork();
|
||||||
|
gpr.Flush();
|
||||||
|
fpr.Flush();
|
||||||
|
WriteExit(destination, inst.LK, js.compilerPC + 4);
|
||||||
|
}
|
||||||
|
|
||||||
if ((inst.BO & BO_DONT_CHECK_CONDITION) == 0)
|
if ((inst.BO & BO_DONT_CHECK_CONDITION) == 0)
|
||||||
SetJumpTarget(pConditionDontBranch);
|
SetJumpTarget(pConditionDontBranch);
|
||||||
|
Reference in New Issue
Block a user