Jit_Integer: Fix pure rotation rlwimix case

We are writing to a.
This commit is contained in:
Merry 2021-11-07 14:10:19 +00:00
parent be9035454a
commit 850d281cb8
1 changed files with 1 additions and 1 deletions

View File

@ -1984,7 +1984,7 @@ void Jit64::rlwimix(UGeckoInstruction inst)
else if (mask == 0xFFFFFFFF)
{
RCOpArg Rs = gpr.Use(s, RCMode::Read);
RCX64Reg Ra = gpr.Bind(a, RCMode::Read);
RCX64Reg Ra = gpr.Bind(a, RCMode::Write);
RegCache::Realize(Rs, Ra);
RotateLeft(32, Ra, Rs, inst.SH);
needs_test = true;