From: Bruno Haible Date: Sun, 21 Oct 2007 00:33:32 +0000 (+0200) Subject: Fix typo in macro name. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1d926bafeda3f6344f4c715357d1086a2f1a5359;p=pspp Fix typo in macro name. --- diff --git a/ChangeLog b/ChangeLog index c8f01a4450..8060c7b864 100644 --- 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 index 76e5573d54..b1087c3ea2 100644 --- 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