Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #10205 from merryhime/pure-rot-rlwimix
Jit_Integer: Fix pure rotation rlwimix case
  • Loading branch information
JosJuice committed Nov 7, 2021
2 parents be90354 + 850d281 commit aa6db1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/PowerPC/Jit64/Jit_Integer.cpp
Expand Up @@ -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;
Expand Down

0 comments on commit aa6db1e

Please sign in to comment.