24 #ifndef _POPCNTINTRIN_H
25 #define _POPCNTINTRIN_H
28 #define __DEFAULT_FN_ATTRS __attribute__((__always_inline__, __nodebug__, __target__("popcnt")))
31 _mm_popcnt_u32(
unsigned int __A)
33 return __builtin_popcount(__A);
39 return __builtin_popcount(__A);
44 _mm_popcnt_u64(
unsigned long long __A)
46 return __builtin_popcountll(__A);
50 _popcnt64(
long long __A)
52 return __builtin_popcountll(__A);
56 #undef __DEFAULT_FN_ATTRS
#define __DEFAULT_FN_ATTRS
Definition: popcntintrin.h:28