glibc/sysdeps/x86_64/l10nflist.c
2011-08-11 14:07:04 -04:00

14 lines
184 B
C

#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>