This website works better with JavaScript.
Home
Explore
Help
Sign In
brkho
/
mesa
Watch
1
Star
0
Fork
0
Code
Releases
562
Wiki
Activity
Browse Source
mesa: use gcc __builtin_popcount()
tags/7.8-rc1
Brian Paul
16 years ago
parent
8d80b5400a
commit
863ad9a683
1 changed files
with
4 additions
and
0 deletions
Split View
Show Diff Stats
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
}
Write
Preview
Loading…
Cancel
Save