[HB] Minor

This commit is contained in:
Behdad Esfahbod 2009-08-06 10:24:49 -04:00
parent f72059ee69
commit 9faee63034
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ _hb_popcount32 (uint32_t mask)
#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)
return __builtin_popcount (mask);
#else
register int y;
register uint32_t y;
y = (mask >> 1) &033333333333;
y = mask - y - ((y >>1) & 033333333333);