More x86 shift fixing

This commit is contained in:
calc84maniac 2012-01-03 10:03:12 -05:00
parent b88d0aa53f
commit b23a3df5e8
1 changed files with 2 additions and 2 deletions

View File

@ -1436,7 +1436,7 @@ void Jit64::rlwinmx(UGeckoInstruction inst)
MOV(32, gpr.R(a), gpr.R(s));
}
if (inst.MB == 0 && inst.ME==31-inst.SH)
if (inst.SH && inst.MB == 0 && inst.ME==31-inst.SH)
{
SHL(32, gpr.R(a), Imm8(inst.SH));
if (inst.Rc)
@ -1444,7 +1444,7 @@ void Jit64::rlwinmx(UGeckoInstruction inst)
GenerateRC();
}
}
else if (inst.ME == 31 && inst.MB == 32 - inst.SH)
else if (inst.SH && inst.ME == 31 && inst.MB == 32 - inst.SH)
{
SHR(32, gpr.R(a), Imm8(inst.MB));
if (inst.Rc)