X-Git-Url: http://git.sourceforge.jp/view?p=pf3gnuchains%2Fgcc-fork.git;a=blobdiff_plain;f=libgfortran%2Fio%2Fwrite_float.def;h=3709b206620080016d70a844f0780ca5a2ff8878;hp=613ffe0a6beec30a84b63c3b368e182829137e50;hb=1955b88d903288c2fa3ec0866051a457cf223ec3;hpb=af97728458fa973bc36fa54c55936a44dfb54bad;ds=sidebyside diff --git a/libgfortran/io/write_float.def b/libgfortran/io/write_float.def index 613ffe0a6be..3709b206620 100644 --- a/libgfortran/io/write_float.def +++ b/libgfortran/io/write_float.def @@ -109,15 +109,7 @@ output_float (st_parameter_dt *dtp, const fnode *f, char *buffer, size_t size, /* Make sure zero comes out as 0.0e0. */ if (zero_flag) - { - e = 0; - if (compile_options.sign_zero != 1) - sign = calculate_sign (dtp, 0); - - /* Handle special cases. */ - if (w == 0) - w = d + (sign != S_NONE ? 2 : 1) + (d == 0 ? 1 : 0); - } + e = 0; /* Normalize the fractional component. */ buffer[2] = buffer[1]; @@ -376,15 +368,21 @@ output_float (st_parameter_dt *dtp, const fnode *f, char *buffer, size_t size, else edigits = 0; - /* Zero values always output as positive, even if the value was negative - before rounding. */ + /* Scan the digits string and count the number of zeros. If we make it + all the way through the loop, we know the value is zero after the + rounding completed above. */ for (i = 0; i < ndigits; i++) { if (digits[i] != '0') break; } + + /* To format properly, we need to know if the rounded result is zero and if + so, we set the zero_flag which may have been already set for + actual zero. */ if (i == ndigits) { + zero_flag = true; /* The output is zero, so set the sign according to the sign bit unless -fno-sign-zero was specified. */ if (compile_options.sign_zero == 1) @@ -393,11 +391,17 @@ output_float (st_parameter_dt *dtp, const fnode *f, char *buffer, size_t size, sign = calculate_sign (dtp, 0); } - /* Pick a field size if none was specified. */ + /* Pick a field size if none was specified, taking into account small + values that may have been rounded to zero. */ if (w <= 0) { - w = nbefore + nzero + nafter + (sign != S_NONE ? 2 : 1); - w = w == 1 ? 2 : w; + if (zero_flag) + w = d + (sign != S_NONE ? 2 : 1) + (d == 0 ? 1 : 0); + else + { + w = nbefore + nzero + nafter + (sign != S_NONE ? 2 : 1); + w = w == 1 ? 2 : w; + } } /* Work out how much padding is needed. */