Fix typo in macro name.
authorBruno Haible <bruno@clisp.org>
Sun, 21 Oct 2007 00:33:32 +0000 (02:33 +0200)
committerBruno Haible <bruno@clisp.org>
Sun, 21 Oct 2007 00:33:32 +0000 (02:33 +0200)
ChangeLog
lib/count-one-bits.h

index c8f01a445069ceb747950aa2130e562c50d23b1c..8060c7b8645bfd34ebb412d92c0ab3180d553def 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-10-20  Bruno Haible  <bruno@clisp.org>
+
+       * lib/count-one-bits.h (COUNT_ONE_BITS): Use the builtin also for
+       gcc-3.4.x.
+
 2007-10-20  Ben Pfaff  <blp@gnu.org>
 
        * lib/math.in.h: Declare round, roundf, roundl if we are providing
index 76e5573d54b4813a5113deb91dadc362978621bc..b1087c3ea262ae089a24880f7bdee2296fa670a8 100644 (file)
@@ -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