mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-10 17:01:17 +12:00
Replaced _rotr with std::rotr
This commit is contained in:
parent
3b5eb49469
commit
6408cfdd4b
5 changed files with 7 additions and 11 deletions
|
@ -182,10 +182,6 @@ inline uint64 _rotl64(uint64 x, sint8 r)
|
|||
return (x << r) | (x >> (64 - r));
|
||||
}
|
||||
|
||||
inline uint64 _rotr64(uint64 x, sint8 r)
|
||||
{
|
||||
return (x >> r) | (x << (64 - r));
|
||||
}
|
||||
|
||||
inline uint64 _umul128(uint64 multiplier, uint64 multiplicand, uint64 *highProduct) {
|
||||
unsigned __int128 x = (unsigned __int128)multiplier * (unsigned __int128)multiplicand;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue