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:
parent
e5f629da37
commit
7a80e8e409
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue