mirror of
https://git.wownero.com/wownero/RandomWOW.git
synced 2024-12-22 07:48:54 +00:00
Fixed softAes compilation on PowerPC
This commit is contained in:
parent
7c012b4fee
commit
6e8c83fdb6
@ -328,7 +328,7 @@ static inline uint32_t subw(uint32_t w) {
|
||||
sbox[w & 0xff];
|
||||
}
|
||||
|
||||
#if defined(__clang__) || defined(__arm__) || defined(__aarch64__)
|
||||
#if defined(__clang__) || defined(__arm__) || defined(__aarch64__) || defined(__powerpc__)
|
||||
static inline uint32_t _rotr(uint32_t value, uint32_t amount) {
|
||||
return (value >> amount) | (value << (-amount & 31));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user