mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
Merge pull request #10827 from JosJuice/jitarm64-psqst-unlock
JitArm64: Fix GPR unlocking in psq_stXX
This commit is contained in:
commit
5337943785
@ -276,9 +276,9 @@ void JitArm64::psq_stXX(UGeckoInstruction inst)
|
||||
gpr.Unlock(ARM64Reg::W0, ARM64Reg::W1, ARM64Reg::W30);
|
||||
fpr.Unlock(ARM64Reg::Q0);
|
||||
if (!js.assumeNoPairedQuantize || !jo.fastmem_arena)
|
||||
gpr.Lock(ARM64Reg::W2);
|
||||
gpr.Unlock(ARM64Reg::W2);
|
||||
if (!js.assumeNoPairedQuantize && !jo.fastmem_arena)
|
||||
gpr.Lock(ARM64Reg::W3);
|
||||
gpr.Unlock(ARM64Reg::W3);
|
||||
if (!js.assumeNoPairedQuantize)
|
||||
fpr.Unlock(ARM64Reg::Q1);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user