]> gcc.gnu.org Git - gcc.git/commitdiff
* gfortran.dg/empty_format_1.f90: Remove stray commas.
authorPaul Brook <paul@codesourcery.com>
Thu, 7 Oct 2004 17:45:40 +0000 (17:45 +0000)
committerPaul Brook <pbrook@gcc.gnu.org>
Thu, 7 Oct 2004 17:45:40 +0000 (17:45 +0000)
From-SVN: r88696

gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/empty_format_1.f90

index c3827ea417a69fd8e30b6e6b99ee0de5097636cd..b4cd8d832746d257e71dbe8022d6406f3165a991 100644 (file)
@@ -1,3 +1,7 @@
+2004-10-07  Paul Brook  <paul@codesourcery.com>
+
+       * gfortran.dg/empty_format_1.f90: Remove stray commas.
+
 2004-10-07  Tobias Schlueter  <tobias.schlueter@physik.uni-muenchen.de>
 
        * gfortran.fortran-torture/execute/intrinsic_mvbits.f90, 
index 450df6d171c04a8c725a7607ef524a685c7ce113..79a2d0c17d745bf6f208e48f1d2543d233512b0d 100644 (file)
@@ -7,9 +7,9 @@ program main
   character*20 str
   io_unit = 10
   open (unit=io_unit,status='scratch',form='formatted')
-  write (io_unit, '(A)'), "Line1"
-  write (io_unit, '(A)'), "Line2"
-  write (io_unit, '(A)'), "Line3"
+  write (io_unit, '(A)') "Line1"
+  write (io_unit, '(A)') "Line2"
+  write (io_unit, '(A)') "Line3"
   rewind (io_unit)
   read (io_unit,'(A)') str
   if (str .ne. "Line1") call abort
This page took 0.094122 seconds and 5 git commands to generate.