mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Revert "armjit: Skip an AND for rotate shifts."
This reverts commit ab2dd54ade
.
Even though the docs say it's safe but apparently not always.
This commit is contained in:
parent
63aeb31e07
commit
b53143bb33
1 changed files with 1 additions and 3 deletions
|
@ -488,9 +488,7 @@ namespace MIPSComp
|
|||
return;
|
||||
}
|
||||
gpr.MapDirtyInIn(rd, rs, rt);
|
||||
// A rotate will be the same even if >= 32.
|
||||
if (shiftType != ST_ROR)
|
||||
AND(R0, gpr.R(rs), Operand2(0x1F));
|
||||
AND(R0, gpr.R(rs), Operand2(0x1F));
|
||||
MOV(gpr.R(rd), Operand2(gpr.R(rt), shiftType, R0));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue