Jit_Branch: bclrx

This commit is contained in:
MerryMage 2018-10-15 21:01:29 +01:00
parent 0cd85bbce7
commit 4443b36326
1 changed files with 7 additions and 3 deletions

View File

@ -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);