compiler.h: add popcount
This commit is contained in:
parent
4e915837a4
commit
b2ff4eb2c9
|
@ -106,3 +106,7 @@
|
||||||
|
|
||||||
typedef unsigned long ulong;
|
typedef unsigned long ulong;
|
||||||
typedef unsigned int uint;
|
typedef unsigned int uint;
|
||||||
|
|
||||||
|
static inline int popcount(uint x) {
|
||||||
|
return __builtin_popcount(x);
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue