re PR libfortran/48047 (Incorrect output rounding of double precision numbers)

2011-03-11  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

	PR libgfortran/48047
	* io/write_float.def (write_float): Change MIN_FIELD_WIDTH to 48.

From-SVN: r170895
This commit is contained in:
Jerry DeLisle 2011-03-12 00:49:51 +00:00
parent 548c4e2bcd
commit 8e71a20690
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2011-03-11 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR libgfortran/48047
* io/write_float.def (write_float): Change MIN_FIELD_WIDTH to 48.
2011-03-04 Janne Blomqvist <jb@gcc.gnu.org>
PR libfortran/47802

View File

@ -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