# HG changeset patch # User Bruno Haible # Date 1192926812 -7200 # Node ID 15917bb4d0782f825fa33fd309bacc6866bb7398 # Parent 96fea5b2eb1126814d5b967da5a0c9a8e2e74502 Fix typo in macro name. diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-10-20 Bruno Haible + + * lib/count-one-bits.h (COUNT_ONE_BITS): Use the builtin also for + gcc-3.4.x. + 2007-10-20 Ben Pfaff * lib/math.in.h: Declare round, roundf, roundl if we are providing diff --git a/lib/count-one-bits.h b/lib/count-one-bits.h --- a/lib/count-one-bits.h +++ b/lib/count-one-bits.h @@ -25,7 +25,7 @@ /* Expand the code which computes the number of 1-bits of the local variable 'x' of type TYPE (an unsigned integer type) and returns it from the current function. */ -#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR >= 4) +#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) #define COUNT_ONE_BITS(BUILTIN, TYPE) \ return BUILTIN (x); #else