From: Bruno Haible Date: Mon, 23 Jun 2025 20:31:02 +0000 (+0200) Subject: Fix typo in comment. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ce7f88c65513d19cbf11a98b33c3ae9f495fe005;p=thirdparty%2Fgnulib.git Fix typo in comment. * m4/gnulib-common.m4 (gl_COMMON_BODY): Fix typo in comment. --- diff --git a/ChangeLog b/ChangeLog index 10e7f399c6..f20d0be43f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2025-06-23 Bruno Haible + + Fix typo in comment. + * m4/gnulib-common.m4 (gl_COMMON_BODY): Fix typo in comment. + 2025-06-22 Bruno Haible gcd: Improve comments regarding GCD_WORD_T. diff --git a/m4/gnulib-common.m4 b/m4/gnulib-common.m4 index 76a8a323fb..5d1944a4f5 100644 --- a/m4/gnulib-common.m4 +++ b/m4/gnulib-common.m4 @@ -1,5 +1,5 @@ # gnulib-common.m4 -# serial 110 +# serial 111 dnl Copyright (C) 2007-2025 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -955,8 +955,8 @@ AC_DEFUN([gl_COMMON_BODY], [ -1 if n1 < n2 The naïve code (n1 > n2 ? 1 : n1 < n2 ? -1 : 0) produces a conditional jump with nearly all GCC versions up to GCC 10. - This variant (n1 < n2 ? -1 : n1 > n2) produces a conditional with many - GCC versions up to GCC 9. + This variant (n1 < n2 ? -1 : n1 > n2) produces a conditional jump with + many GCC versions up to GCC 9. The better code (n1 > n2) - (n1 < n2) from Hacker's Delight § 2-9 avoids conditional jumps in all GCC versions >= 3.4. */ #define _GL_CMP(n1, n2) (((n1) > (n2)) - ((n1) < (n2)))