mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Added missing unlocks from r6053 (thanks mylek4)
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6055 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -386,6 +386,7 @@ void Jit64::stX(UGeckoInstruction inst)
|
|||||||
gpr.Lock(a);
|
gpr.Lock(a);
|
||||||
gpr.KillImmediate(a, true, true);
|
gpr.KillImmediate(a, true, true);
|
||||||
ADD(32, gpr.R(a), Imm32(offset));
|
ADD(32, gpr.R(a), Imm32(offset));
|
||||||
|
gpr.UnlockAll();
|
||||||
}
|
}
|
||||||
gpr.UnlockAllX();
|
gpr.UnlockAllX();
|
||||||
return;
|
return;
|
||||||
|
@ -162,6 +162,7 @@ void Jit64::mfcr(UGeckoInstruction inst)
|
|||||||
OR(8, R(EAX), M(&PowerPC::ppcState.cr_fast[i]));
|
OR(8, R(EAX), M(&PowerPC::ppcState.cr_fast[i]));
|
||||||
}
|
}
|
||||||
MOV(32, gpr.R(d), R(EAX));
|
MOV(32, gpr.R(d), R(EAX));
|
||||||
|
gpr.UnlockAll();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Jit64::mtcrf(UGeckoInstruction inst)
|
void Jit64::mtcrf(UGeckoInstruction inst)
|
||||||
|
Reference in New Issue
Block a user