mirror of
https://git.wownero.com/wownero/RandomWOW.git
synced 2024-08-15 00:23:14 +00:00
Fixed softAes compilation on PowerPC
This commit is contained in:
parent
7c012b4fee
commit
6e8c83fdb6
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue