dwrite: Only use __builtin_popcount in PE builds.
It's not compatible with -mabi=ms. Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
330dc60197
commit
73b94f8f94
|
@ -3435,7 +3435,7 @@ static unsigned int opentype_layout_is_glyph_covered(const struct dwrite_fonttab
|
|||
|
||||
static inline unsigned int dwrite_popcount(unsigned int x)
|
||||
{
|
||||
#if defined(__GNUC__) && (__GNUC__ >= 4)
|
||||
#if defined(__MINGW32__)
|
||||
return __builtin_popcount(x);
|
||||
#else
|
||||
x -= x >> 1 & 0x55555555;
|
||||
|
|
Loading…
Reference in New Issue