Fixed softAes compilation on PowerPC

debug
tevador 5 years ago
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…
Cancel
Save