* gfortran.dg/pr20755.f: Fixed bad format.

From-SVN: r97650
This commit is contained in:
Francois-Xavier Coudert 2005-04-05 21:45:41 +02:00 committed by François-Xavier Coudert
parent f430bae872
commit 87ac6a500a
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2005-04-05 Francois-Xavier Coudert <coudert@clipper.ens.fr>
* gfortran.dg/pr20755.f: Fixed bad format.
2005-04-05 Mark Mitchell <mark@codesourcery.com>
PR c++/20763

View File

@ -6,5 +6,5 @@
if (s .ne. " 0.00 2.000E-02") call abort
write (s,2000) 0.01, 0.02
if (s .ne. " 1.000E-02 2.000E-02") call abort
2000 format (1P2G12.3)
2000 format (1PG12.3,G12.3)
end