mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-15 05:52:05 +00:00
Jit_Branch: bclrx
This commit is contained in:
parent
0cd85bbce7
commit
4443b36326
1 changed files with 7 additions and 3 deletions
|
@ -277,9 +277,13 @@ void Jit64::bclrx(UGeckoInstruction inst)
|
|||
if (inst.LK)
|
||||
MOV(32, PPCSTATE_LR, Imm32(js.compilerPC + 4));
|
||||
|
||||
gpr.Flush(RegCache::FlushMode::MaintainState);
|
||||
fpr.Flush(RegCache::FlushMode::MaintainState);
|
||||
WriteBLRExit();
|
||||
{
|
||||
RCForkGuard gpr_guard = gpr.Fork();
|
||||
RCForkGuard fpr_guard = fpr.Fork();
|
||||
gpr.Flush();
|
||||
fpr.Flush();
|
||||
WriteBLRExit();
|
||||
}
|
||||
|
||||
if ((inst.BO & BO_DONT_CHECK_CONDITION) == 0)
|
||||
SetJumpTarget(pConditionDontBranch);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue