mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-10 17:01:17 +12:00
Replaced _rotl64 with std::rotl
This commit is contained in:
parent
6408cfdd4b
commit
cd2b081098
8 changed files with 44 additions and 48 deletions
|
@ -177,10 +177,6 @@ inline sint16 _swapEndianS16(sint16 v)
|
|||
return (sint16)(((uint16)v >> 8) | ((uint16)v << 8));
|
||||
}
|
||||
|
||||
inline uint64 _rotl64(uint64 x, sint8 r)
|
||||
{
|
||||
return (x << r) | (x >> (64 - r));
|
||||
}
|
||||
|
||||
|
||||
inline uint64 _umul128(uint64 multiplier, uint64 multiplicand, uint64 *highProduct) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue