Skip to content
Permalink
Browse files
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.
@@ -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;

0 comments on commit aa6db1e

Please sign in to comment.