Jit_Branch: bclrx
This commit is contained in:
parent
0cd85bbce7
commit
4443b36326
|
@ -277,9 +277,13 @@ void Jit64::bclrx(UGeckoInstruction inst)
|
||||||
if (inst.LK)
|
if (inst.LK)
|
||||||
MOV(32, PPCSTATE_LR, Imm32(js.compilerPC + 4));
|
MOV(32, PPCSTATE_LR, Imm32(js.compilerPC + 4));
|
||||||
|
|
||||||
gpr.Flush(RegCache::FlushMode::MaintainState);
|
{
|
||||||
fpr.Flush(RegCache::FlushMode::MaintainState);
|
RCForkGuard gpr_guard = gpr.Fork();
|
||||||
|
RCForkGuard fpr_guard = fpr.Fork();
|
||||||
|
gpr.Flush();
|
||||||
|
fpr.Flush();
|
||||||
WriteBLRExit();
|
WriteBLRExit();
|
||||||
|
}
|
||||||
|
|
||||||
if ((inst.BO & BO_DONT_CHECK_CONDITION) == 0)
|
if ((inst.BO & BO_DONT_CHECK_CONDITION) == 0)
|
||||||
SetJumpTarget(pConditionDontBranch);
|
SetJumpTarget(pConditionDontBranch);
|
||||||
|
|
Loading…
Reference in New Issue