]> Savannah Git Hosting - gnulib.git/commitdiff
maint.mk: update list of intprops.h symbol names
authorJim Meyering <meyering@fb.com>
Fri, 30 Dec 2016 08:42:06 +0000 (09:42 +0100)
committerJim Meyering <meyering@fb.com>
Fri, 30 Dec 2016 08:42:06 +0000 (09:42 +0100)
* top/maint.mk (_intprops_names): Regenerate the list of symbol names.
This avoids a false failure of the sc_prohibit_intprops_without_use
in grep.

ChangeLog
top/maint.mk

index 193a96284d0fb097de1e5f6660f821c1b02c10d2..ce683a527205979a621816e6962599eb63b4b462 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2016-12-30  Jim Meyering  <meyering@fb.com>
+
+       maint.mk: update list of intprops.h symbol names
+       * top/maint.mk (_intprops_names): Regenerate the list of symbol names.
+       This avoids a false failure of the sc_prohibit_intprops_without_use
+       in grep.
+
 2016-12-29  Eric Blake  <eblake@redhat.com>
 
        getopt: fix parallel test failure
index c32f8b6d0e66f7be0f13809aae82ee979e97a878..53a1e69a688c7e87ef07e1703d85dfe156870080 100644 (file)
@@ -660,14 +660,15 @@ sc_prohibit_strings_without_use:
 # Get the list of symbol names with this:
 # perl -lne '/^# *define ([A-Z]\w+)\(/ and print $1' lib/intprops.h|fmt
 _intprops_names =                                                      \
-  TYPE_IS_INTEGER TYPE_SIGNED TYPE_MINIMUM TYPE_MAXIMUM                        \
-  INT_BITS_STRLEN_BOUND INT_STRLEN_BOUND INT_BUFSIZE_BOUND             \
+  TYPE_IS_INTEGER TYPE_SIGNED EXPR_SIGNED TYPE_WIDTH TYPE_MINIMUM      \
+  TYPE_MAXIMUM INT_BITS_STRLEN_BOUND INT_STRLEN_BOUND INT_BUFSIZE_BOUND        \
   INT_ADD_RANGE_OVERFLOW INT_SUBTRACT_RANGE_OVERFLOW                   \
   INT_NEGATE_RANGE_OVERFLOW INT_MULTIPLY_RANGE_OVERFLOW                        \
   INT_DIVIDE_RANGE_OVERFLOW INT_REMAINDER_RANGE_OVERFLOW               \
   INT_LEFT_SHIFT_RANGE_OVERFLOW INT_ADD_OVERFLOW INT_SUBTRACT_OVERFLOW \
-  INT_NEGATE_OVERFLOW INT_MULTIPLY_OVERFLOW INT_DIVIDE_OVERFLOW                \
-  INT_REMAINDER_OVERFLOW INT_LEFT_SHIFT_OVERFLOW
+  INT_NEGATE_OVERFLOW INT_NEGATE_OVERFLOW INT_MULTIPLY_OVERFLOW                \
+  INT_DIVIDE_OVERFLOW INT_REMAINDER_OVERFLOW INT_LEFT_SHIFT_OVERFLOW   \
+  INT_ADD_WRAPV INT_SUBTRACT_WRAPV INT_MULTIPLY_WRAPV
 _intprops_syms_re = $(subst $(_sp),|,$(strip $(_intprops_names)))
 # Prohibit the inclusion of intprops.h without an actual use.
 sc_prohibit_intprops_without_use: