1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-26 12:25:09 +03:00

Fix a portability issue for GCC < 3.4.0

This commit is contained in:
Daniel Veillard 2012-10-29 10:27:18 +08:00
parent 153cf15905
commit 4ea74a440d

View File

@ -48,7 +48,7 @@ typedef unsigned __int64 uint64_t;
int compute_minrun(uint64_t);
#ifndef CLZ
#ifdef __GNUC__
#if defined(__GNUC__) && ((__GNUC__ == 3 && __GNUC_MINOR__ >= 4) || (__GNUC__ > 3))
#define CLZ __builtin_clzll
#else