mesa: use gcc __builtin_popcount()

This commit is contained in:
Brian Paul 2009-11-23 18:09:46 -07:00
parent 8d80b5400a
commit 863ad9a683

View file

@ -629,11 +629,15 @@ _mesa_ffsll(int64_t val)
unsigned int
_mesa_bitcount(unsigned int n)
{
#if defined(__GNUC__)
return __builtin_popcount(n);
#else
unsigned int bits;
for (bits = 0; n > 0; n = n >> 1) {
bits += (n & 1);
}
return bits;
#endif
}