From: Jerry DeLisle Date: Sat, 12 Mar 2011 00:49:51 +0000 (+0000) Subject: re PR libfortran/48047 (Incorrect output rounding of double precision numbers) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8e71a20690913cec7c3c5c3e9d8c25a61086a0a5;p=gcc.git re PR libfortran/48047 (Incorrect output rounding of double precision numbers) 2011-03-11 Jerry DeLisle PR libgfortran/48047 * io/write_float.def (write_float): Change MIN_FIELD_WIDTH to 48. From-SVN: r170895 --- diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index 33e2836ea7f..08b20387583 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,8 @@ +2011-03-11 Jerry DeLisle + + PR libgfortran/48047 + * io/write_float.def (write_float): Change MIN_FIELD_WIDTH to 48. + 2011-03-04 Janne Blomqvist PR libfortran/47802 diff --git a/libgfortran/io/write_float.def b/libgfortran/io/write_float.def index 3709b206620..b72cf9f5665 100644 --- a/libgfortran/io/write_float.def +++ b/libgfortran/io/write_float.def @@ -1020,7 +1020,7 @@ write_float (st_parameter_dt *dtp, const fnode *f, const char *source, int len) { #if defined(HAVE_GFC_REAL_16) || __LDBL_DIG__ > 18 -# define MIN_FIELD_WIDTH 46 +# define MIN_FIELD_WIDTH 48 #else # define MIN_FIELD_WIDTH 31 #endif