From: Paul Eggert Date: Sun, 24 Oct 2010 17:11:16 +0000 (-0700) Subject: inttostr: simplify by removing unnecessary redundancy X-Git-Tag: v0.1~3663 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=9f3df9d2a82a315807106243b8ba70992bdba380;p=gnulib.git inttostr: simplify by removing unnecessary redundancy * lib/anytostr.c: Don't include verify.h. (anytostr): Don't verify that TYPE_SIGNED (inttype) equals inttype_is_signed. Instead, disable the bogus GCC warnings, so that there's no need for inttype_is_signed and for calling TYPE_SIGNED. * lib/imaxtostr.c (inttype_is_signed): Remove; no longer needed. * lib/inttostr.c, lib/offtostr.c, lib/uinttostr.c, lib/umaxtostr.c: Likewise. * modules/inttostr (Depends-on): Remove 'verify'. --- diff --git a/ChangeLog b/ChangeLog index f312a8816..95328fe7f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,15 @@ +2010-10-23 Paul Eggert + + inttostr: simplify by removing unnecessary redundancy + * lib/anytostr.c: Don't include verify.h. + (anytostr): Don't verify that TYPE_SIGNED (inttype) equals + inttype_is_signed. Instead, disable the bogus GCC warnings, so that + there's no need for inttype_is_signed and for calling TYPE_SIGNED. + * lib/imaxtostr.c (inttype_is_signed): Remove; no longer needed. + * lib/inttostr.c, lib/offtostr.c, lib/uinttostr.c, lib/umaxtostr.c: + Likewise. + * modules/inttostr (Depends-on): Remove 'verify'. + 2010-10-23 Bruno Haible nl_langinfo: Mention problem with CRNCYSTR on NetBSD 5.0. diff --git a/lib/anytostr.c b/lib/anytostr.c index 27ad98502..eb71553b8 100644 --- a/lib/anytostr.c +++ b/lib/anytostr.c @@ -17,10 +17,14 @@ /* Written by Paul Eggert */ +/* Tell gcc not to warn about the (i < 0) test, below. */ +#if (__GNUC__ == 4 && 3 <= __GNUC_MINOR__) || 4 < __GNUC__ +# pragma GCC diagnostic ignored "-Wtype-limits" +#endif + #include #include "inttostr.h" -#include "verify.h" /* Convert I to a printable string in BUF, which must be at least INT_BUFSIZE_BOUND (INTTYPE) bytes long. Return the address of the @@ -29,11 +33,9 @@ char * __attribute_warn_unused_result__ anytostr (inttype i, char *buf) { - verify (TYPE_SIGNED (inttype) == inttype_is_signed); char *p = buf + INT_STRLEN_BOUND (inttype); *p = 0; -#if inttype_is_signed if (i < 0) { do @@ -43,7 +45,6 @@ anytostr (inttype i, char *buf) *--p = '-'; } else -#endif { do *--p = '0' + i % 10; diff --git a/lib/imaxtostr.c b/lib/imaxtostr.c index d2a0429b0..b91ac98c4 100644 --- a/lib/imaxtostr.c +++ b/lib/imaxtostr.c @@ -1,4 +1,3 @@ #define anytostr imaxtostr #define inttype intmax_t -#define inttype_is_signed 1 #include "anytostr.c" diff --git a/lib/inttostr.c b/lib/inttostr.c index 14db9b8c1..c96b5ca39 100644 --- a/lib/inttostr.c +++ b/lib/inttostr.c @@ -1,4 +1,3 @@ #define anytostr inttostr #define inttype int -#define inttype_is_signed 1 #include "anytostr.c" diff --git a/lib/offtostr.c b/lib/offtostr.c index 68f2b695b..96082aafc 100644 --- a/lib/offtostr.c +++ b/lib/offtostr.c @@ -1,4 +1,3 @@ #define anytostr offtostr #define inttype off_t -#define inttype_is_signed 1 #include "anytostr.c" diff --git a/lib/uinttostr.c b/lib/uinttostr.c index 21fa3761a..48fd98f21 100644 --- a/lib/uinttostr.c +++ b/lib/uinttostr.c @@ -1,4 +1,3 @@ #define anytostr uinttostr #define inttype unsigned int -#define inttype_is_signed 0 #include "anytostr.c" diff --git a/lib/umaxtostr.c b/lib/umaxtostr.c index 7fd995084..f95bfc3ee 100644 --- a/lib/umaxtostr.c +++ b/lib/umaxtostr.c @@ -1,4 +1,3 @@ #define anytostr umaxtostr #define inttype uintmax_t -#define inttype_is_signed 0 #include "anytostr.c" diff --git a/modules/inttostr b/modules/inttostr index 495ef25cf..6bbec2895 100644 --- a/modules/inttostr +++ b/modules/inttostr @@ -14,7 +14,6 @@ m4/inttostr.m4 Depends-on: intprops stdint -verify configure.ac: gl_INTTOSTR