msvcp90: Avoid depending on config.h for the __builtin_clz check.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2019-06-14 09:27:33 +02:00
parent 8cc83d7f5d
commit 031116cff7

View file

@ -1893,7 +1893,7 @@ typedef struct compact_block
/* Return the integer base-2 logarithm of (x|1). Result is 0 for x == 0. */
static inline unsigned int log2i(unsigned int x)
{
#ifdef HAVE___BUILTIN_CLZ
#if defined(__GNUC__) && ((__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)))
return __builtin_clz(x|1) ^ 0x1f;
#else
static const unsigned int l[] =