mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-13 01:29:11 +01:00
Jit64: Attempt to fix updating stores with an immediate value
See https://bugs.dolphin-emu.org/issues/13144
This commit is contained in:
parent
497e938c8c
commit
c55e08ff73
@ -510,7 +510,7 @@ void Jit64::stX(UGeckoInstruction inst)
|
||||
}
|
||||
else
|
||||
{
|
||||
RCOpArg Ra = gpr.UseNoImm(a, RCMode::Write);
|
||||
RCOpArg Ra = gpr.RevertableBind(a, RCMode::Write);
|
||||
RegCache::Realize(Ra);
|
||||
MemoryExceptionCheck();
|
||||
MOV(32, Ra, Imm32(addr));
|
||||
|
@ -144,7 +144,7 @@ void Jit64::stfXXX(UGeckoInstruction inst)
|
||||
}
|
||||
else
|
||||
{
|
||||
RCOpArg Ra = gpr.UseNoImm(a, RCMode::Write);
|
||||
RCOpArg Ra = gpr.RevertableBind(a, RCMode::Write);
|
||||
RegCache::Realize(Ra);
|
||||
MemoryExceptionCheck();
|
||||
MOV(32, Ra, Imm32(addr));
|
||||
|
Loading…
x
Reference in New Issue
Block a user