From f9a2a6369d67788a287a985a2d231bb8e3ccd60d Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 29 Jul 1999 22:34:58 +0000 Subject: Update. 1999-07-29 Andreas Schwab * misc/efgcvt.c (NDIGIT_MAX): Provide precomputed constants for all floating point formats supported by gcc. Error out for unhandled precisions. * misc/efgcvt_r.c (NDIGIT_MAX): Likewise. * misc/qefgcvt.c (NDIGIT_MAX): Likewise. * misc/qefgcvt_r.c (NDIGIT_MAX): Likewise. --- misc/qefgcvt.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'misc/qefgcvt.c') diff --git a/misc/qefgcvt.c b/misc/qefgcvt.c index faf788aa5d..63fc764121 100644 --- a/misc/qefgcvt.c +++ b/misc/qefgcvt.c @@ -28,8 +28,16 @@ #define MAXDIG (NDIGIT_MAX + 12) #if LDBL_MANT_DIG == 64 # define NDIGIT_MAX 21 +#elif LDBL_MANT_DIG == 53 +# define NDIGIT_MAX 17 +#elif LDBL_MANT_DIG == 113 +# define NDIGIT_MAX 36 +#elif LDBL_MANT_DIG == 56 +# define NDIGIT_MAX 18 #else -/* See IEEE 854 5.6, table 2 for this formula. */ +/* See IEEE 854 5.6, table 2 for this formula. Unfortunately we need a + compile time constant here, so we cannot use it. */ +# error "NDIGIT_MAX must be precomputed" # define NDIGIT_MAX (lrint (ceil (M_LN2 / M_LN10 * LDBL_MANT_DIG + 1.0))) #endif -- cgit v1.2.3