1
0
Fork 0
forked from lthn/blockchain

returned original __builtin_popcount

This commit is contained in:
cryptozoidberg 2019-07-16 20:49:01 +02:00
parent b1c91a23b6
commit 41aa0932ce
No known key found for this signature in database
GPG key ID: 22DEB97A54C6FDEC

View file

@ -39,7 +39,7 @@ static inline uint32_t clz32(uint32_t x)
static inline uint32_t popcount32(uint32_t x)
{
return (uint32_t)__popcnt(x);
return (uint32_t)__builtin_popcount(x);
}
static inline uint32_t mul_hi32(uint32_t x, uint32_t y)