mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 03:24:59 +00:00
Merge pull request #10205 from merryhime/pure-rot-rlwimix
Jit_Integer: Fix pure rotation rlwimix case
This commit is contained in:
commit
aa6db1e029
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue