Avoid shifting by greater/equal than max bits values in ppu_rotate_mask

This commit is contained in:
Eladash 2019-12-21 09:12:14 +02:00 committed by Ivan
parent a36f0497ce
commit c65bb0d267

View File

@ -64,7 +64,7 @@ union ppu_opcode_t
inline u64 ppu_rotate_mask(u32 mb, u32 me)
{
return utils::ror64(~0ull << (63 ^ (me - mb)), mb);
return utils::ror64(~0ull << (~(me - mb) & 63), mb);
}
inline u32 ppu_decode(u32 inst)