blob: 2e08372338fdf2d1aabf6e73ccb53d4eb86a4073 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifdef __POPCNT__
# include <popcntintrin.h>
static inline unsigned int
pop (unsigned int x)
{
return _mm_popcnt_u32 (x);
}
# define ARCH_POP 1
#endif
#include <intl/l10nflist.c>
|