OSDN Git Service

* gfortran.dg/empty_format_1.f90: Remove stray commas.
authorpbrook <pbrook@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 7 Oct 2004 17:45:40 +0000 (17:45 +0000)
committerpbrook <pbrook@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 7 Oct 2004 17:45:40 +0000 (17:45 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@88696 138bc75d-0d04-0410-961f-82ee72b054a4

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

index c3827ea..b4cd8d8 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 450df6d..79a2d0c 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