Browse Source

mesa: use gcc __builtin_popcount()

tags/7.8-rc1
Brian Paul 16 years ago
parent
commit
863ad9a683
1 changed files with 4 additions and 0 deletions
  1. 4
    0
      src/mesa/main/imports.c

+ 4
- 0
src/mesa/main/imports.c 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
}



Loading…
Cancel
Save