mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
Merge pull request #12428 from JosJuice/jitarm64-rlwinmx-shift-only
JitArm64: Add rlwinmx case for only shifting
This commit is contained in:
commit
e6c85bf8f0
@ -784,6 +784,10 @@ void JitArm64::rlwinmx(UGeckoInstruction inst)
|
||||
// Immediate mask
|
||||
AND(gpr.R(a), gpr.R(s), LogicalImm(mask, GPRSize::B32));
|
||||
}
|
||||
else if (mask == 0xFFFFFFFF)
|
||||
{
|
||||
ROR(gpr.R(a), gpr.R(s), 32 - inst.SH);
|
||||
}
|
||||
else if (inst.ME == 31 && 31 < inst.SH + inst.MB)
|
||||
{
|
||||
// Bit select of the upper part
|
||||
|
Loading…
Reference in New Issue
Block a user