From: Jerry DeLisle Date: Sat, 19 Feb 2011 15:21:05 +0000 (+0000) Subject: re PR libfortran/47567 (Wrong output for small absolute values with F editing) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=66115309bba150da328bafb196fa93284e54e411;p=gcc.git re PR libfortran/47567 (Wrong output for small absolute values with F editing) 2011-02-19 Jerry DeLisle PR libgfortran/47567 * gfortran.dg/fmt_f0_1.f90: Update test. Fix previous log entry. From-SVN: r170319 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index f1076f6ffdc..fd5066b204e 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,12 +1,7 @@ -2011-02-19 Paul Thomas +2011-02-19 Jerry DeLisle - PR fortran/47348 - * trans-array.c (get_array_ctor_all_strlen): Move up in file. - (get_array_ctor_var_strlen): Add block dummy and add call to - get_array_ctor_all_strlen instead of giving up on substrings. - Call gcc_unreachable for default case. - (get_array_ctor_strlen): Add extra argument to in call to - get_array_ctor_var_strlen. + PR libgfortran/47567 + * gfortran.dg/fmt_f0_1.f90: Update test. 2011-02-19 Paul Thomas diff --git a/gcc/testsuite/gfortran.dg/fmt_f0_1.f90 b/gcc/testsuite/gfortran.dg/fmt_f0_1.f90 index 166846b87fe..e4e92b16725 100644 --- a/gcc/testsuite/gfortran.dg/fmt_f0_1.f90 +++ b/gcc/testsuite/gfortran.dg/fmt_f0_1.f90 @@ -14,4 +14,36 @@ if (str.ne."0.000") call abort write (str,'(f0.4)') x if (str.ne."0.0000") call abort + write (str,'(F0.0)') 0.0 + if (str.ne."0.") call abort + write (str,'(F0.0)') 0.001 + if (str.ne."0.") call abort + write (str,'(F0.0)') 0.01 + if (str.ne."0.") call abort + write (str,'(F0.0)') 0.1 + if (str.ne."0.") call abort + write (str,'(F1.0)') -0.0 + if (str.ne."0") call abort + write (str,'(F1.0)') 0.001 + if (str.ne."*") call abort + write (str,'(F1.0)') 0.01 + if (str.ne."*") call abort + write (str,'(F1.0)') 0.1 + if (str.ne."*") call abort + write (str,'(F2.0)') -0.001 + if (str.ne."*") call abort + write (str,'(F2.0)') -0.01 + if (str.ne."**") call abort + write (str,'(F2.0)') -0.1 + if (str.ne."**") call abort + write (str,'(F0.2)') 0.0 + if (str.ne.".00") call abort + write (str,'(F0.0)') -0.0 + if (str.ne."-0.") call abort + write (str,'(F0.1)') -0.0 + if (str.ne."-.0") call abort + write (str,'(F0.2)') -0.0 + if (str.ne."-.00") call abort + write (str,'(F0.3)') -0.0 + if (str.ne."-.000") call abort END