projects
/
platform
/
upstream
/
pango.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1761cd1
)
[HB] Minor
author
Behdad Esfahbod
<behdad@behdad.org>
Thu, 6 Aug 2009 14:24:49 +0000
(10:24 -0400)
committer
Behdad Esfahbod
<behdad@behdad.org>
Thu, 6 Aug 2009 14:24:49 +0000
(10:24 -0400)
pango/opentype/hb-private.h
patch
|
blob
|
history
diff --git
a/pango/opentype/hb-private.h
b/pango/opentype/hb-private.h
index
55bedad
..
ab3af85
100644
(file)
--- a/
pango/opentype/hb-private.h
+++ b/
pango/opentype/hb-private.h
@@
-138,7
+138,7
@@
_hb_popcount32 (uint32_t mask)
#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)
return __builtin_popcount (mask);
#else
- register
in
t y;
+ register
uint32_
t y;
y = (mask >> 1) &033333333333;
y = mask - y - ((y >>1) & 033333333333);