public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libfortran/19595] New: eor and advance="yes" should not mix
@ 2005-01-23 20:50 Thomas dot Koenig at online dot de
  2005-01-24  8:13 ` [Bug libfortran/19595] " Thomas dot Koenig at online dot de
                   ` (17 more replies)
  0 siblings, 18 replies; 19+ messages in thread
From: Thomas dot Koenig at online dot de @ 2005-01-23 20:50 UTC (permalink / raw)
  To: gcc-bugs

$ cat eor.f90
program main
  character*3 c
  open(12)
  write(12,'(A)') '123','456'
  rewind(12)
  read(12,'(A3)',advance='YES',eor=100) c
100 continue
end program main
$ gfortran eor.f90
$ ./a.out

Eor is only legal if advance='NO' is specified. It would be nice
if the above would generate an error.

        Thomas

-- 
           Summary: eor and advance="yes" should not mix
           Product: gcc
           Version: 4.0.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: libfortran
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: Thomas dot Koenig at online dot de
                CC: gcc-bugs at gcc dot gnu dot org


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19595


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug libfortran/19595] eor and advance="yes" should not mix
  2005-01-23 20:50 [Bug libfortran/19595] New: eor and advance="yes" should not mix Thomas dot Koenig at online dot de
@ 2005-01-24  8:13 ` Thomas dot Koenig at online dot de
  2005-01-24 20:38 ` Thomas dot Koenig at online dot de
                   ` (16 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: Thomas dot Koenig at online dot de @ 2005-01-24  8:13 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |diagnostic


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19595


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug libfortran/19595] eor and advance="yes" should not mix
  2005-01-23 20:50 [Bug libfortran/19595] New: eor and advance="yes" should not mix Thomas dot Koenig at online dot de
  2005-01-24  8:13 ` [Bug libfortran/19595] " Thomas dot Koenig at online dot de
@ 2005-01-24 20:38 ` Thomas dot Koenig at online dot de
  2005-01-25 12:45 ` Thomas dot Koenig at online dot de
                   ` (15 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: Thomas dot Koenig at online dot de @ 2005-01-24 20:38 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From Thomas dot Koenig at online dot de  2005-01-24 20:37 -------
*** Bug 19596 has been marked as a duplicate of this bug. ***

-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19595


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug libfortran/19595] eor and advance="yes" should not mix
  2005-01-23 20:50 [Bug libfortran/19595] New: eor and advance="yes" should not mix Thomas dot Koenig at online dot de
  2005-01-24  8:13 ` [Bug libfortran/19595] " Thomas dot Koenig at online dot de
  2005-01-24 20:38 ` Thomas dot Koenig at online dot de
@ 2005-01-25 12:45 ` Thomas dot Koenig at online dot de
  2005-01-26 21:43 ` [Bug libfortran/19595] eor does not work Thomas dot Koenig at online dot de
                   ` (14 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: Thomas dot Koenig at online dot de @ 2005-01-25 12:45 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From Thomas dot Koenig at online dot de  2005-01-25 12:44 -------
The following fixes the parsing issue:

--- transfer.c.orig     2005-01-25 13:43:28.000000000 +0100
+++ transfer.c  2005-01-25 13:43:35.000000000 +0100
@@ -1041,7 +1041,7 @@

   if (read_flag)
     {
-      if (ioparm.eor != 0 && advance_status == ADVANCE_NO)
+      if (ioparm.eor != 0 && advance_status != ADVANCE_NO)
        generate_error (ERROR_MISSING_OPTION,
                        "EOR specification requires an ADVANCE specification of
NO");

End-of-record handling for formatted read is generally broken, which
also includes eor (see PR 19568).

-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19595


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug libfortran/19595] eor does not work
  2005-01-23 20:50 [Bug libfortran/19595] New: eor and advance="yes" should not mix Thomas dot Koenig at online dot de
                   ` (2 preceding siblings ...)
  2005-01-25 12:45 ` Thomas dot Koenig at online dot de
@ 2005-01-26 21:43 ` Thomas dot Koenig at online dot de
  2005-01-26 21:48 ` pinskia at gcc dot gnu dot org
                   ` (13 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: Thomas dot Koenig at online dot de @ 2005-01-26 21:43 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From Thomas dot Koenig at online dot de  2005-01-26 21:43 -------
There are two parts to this bug.  The other is that eor is
that end-of-line processing is broken.  Here's a test case
with the patch from comment #2 applied:

$ cat eor_2.f90
program main
  character*4 c
  open(12)
  write(12,'(A)') '123','456'
  rewind(12)
  read(12,'(A4)',advance='NO',eor=100) c
  call abort
100 continue
end program main
$ gfortran eor_2.f90
$ ./a.out
Aborted


-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
  BugsThisDependsOn|                            |19568
           Keywords|diagnostic                  |wrong-code
            Summary|eor and advance="yes" should|eor does not work
                   |not mix                     |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19595


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug libfortran/19595] eor does not work
  2005-01-23 20:50 [Bug libfortran/19595] New: eor and advance="yes" should not mix Thomas dot Koenig at online dot de
                   ` (3 preceding siblings ...)
  2005-01-26 21:43 ` [Bug libfortran/19595] eor does not work Thomas dot Koenig at online dot de
@ 2005-01-26 21:48 ` pinskia at gcc dot gnu dot org
  2005-01-29 15:45 ` cvs-commit at gcc dot gnu dot org
                   ` (12 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-01-26 21:48 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-01-26 21:48 -------
Patch here: <http://gcc.gnu.org/ml/gcc-patches/2005-01/msg01933.html>.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
           Keywords|                            |patch
   Last reconfirmed|0000-00-00 00:00:00         |2005-01-26 21:48:45
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19595


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug libfortran/19595] eor does not work
  2005-01-23 20:50 [Bug libfortran/19595] New: eor and advance="yes" should not mix Thomas dot Koenig at online dot de
                   ` (4 preceding siblings ...)
  2005-01-26 21:48 ` pinskia at gcc dot gnu dot org
@ 2005-01-29 15:45 ` cvs-commit at gcc dot gnu dot org
  2005-01-29 15:46 ` pbrook at gcc dot gnu dot org
                   ` (11 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-01-29 15:45 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2005-01-29 15:45 -------
Subject: Bug 19595

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	pbrook@gcc.gnu.org	2005-01-29 15:45:17

Modified files:
	gcc/testsuite  : ChangeLog 
	libgfortran    : ChangeLog 
	libgfortran/io : transfer.c 
Added files:
	gcc/testsuite/gfortran.dg: eor_1.f90 

Log message:
	2005-01-29  Thomas Koenig  <Thomas.Koenig@online.de>
	
	PR libfortran/19595
	* io/transfer.c (data_transfer_init): eor requires advance="NO".
	testsuite/
	* gfortran.dg/eor_1.f90:  New test.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&r1=1.4954&r2=1.4955
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gfortran.dg/eor_1.f90.diff?cvsroot=gcc&r1=NONE&r2=1.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/ChangeLog.diff?cvsroot=gcc&r1=1.154&r2=1.155
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/io/transfer.c.diff?cvsroot=gcc&r1=1.30&r2=1.31



-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19595


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug libfortran/19595] eor does not work
  2005-01-23 20:50 [Bug libfortran/19595] New: eor and advance="yes" should not mix Thomas dot Koenig at online dot de
                   ` (5 preceding siblings ...)
  2005-01-29 15:45 ` cvs-commit at gcc dot gnu dot org
@ 2005-01-29 15:46 ` pbrook at gcc dot gnu dot org
  2005-01-29 15:47 ` pbrook at gcc dot gnu dot org
                   ` (10 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: pbrook at gcc dot gnu dot org @ 2005-01-29 15:46 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pbrook at gcc dot gnu dot org  2005-01-29 15:46 -------
Fixed.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|---                         |4.0.0


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19595


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug libfortran/19595] eor does not work
  2005-01-23 20:50 [Bug libfortran/19595] New: eor and advance="yes" should not mix Thomas dot Koenig at online dot de
                   ` (7 preceding siblings ...)
  2005-01-29 15:47 ` pbrook at gcc dot gnu dot org
@ 2005-01-29 15:47 ` pbrook at gcc dot gnu dot org
  2005-01-30 14:41 ` pinskia at gcc dot gnu dot org
                   ` (8 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: pbrook at gcc dot gnu dot org @ 2005-01-29 15:47 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pbrook at gcc dot gnu dot org  2005-01-29 15:47 -------
.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|FIXED                       |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19595


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug libfortran/19595] eor does not work
  2005-01-23 20:50 [Bug libfortran/19595] New: eor and advance="yes" should not mix Thomas dot Koenig at online dot de
                   ` (6 preceding siblings ...)
  2005-01-29 15:46 ` pbrook at gcc dot gnu dot org
@ 2005-01-29 15:47 ` pbrook at gcc dot gnu dot org
  2005-01-29 15:47 ` pbrook at gcc dot gnu dot org
                   ` (9 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: pbrook at gcc dot gnu dot org @ 2005-01-29 15:47 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pbrook at gcc dot gnu dot org  2005-01-29 15:47 -------
Whoops, maybe not fixed.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Last reconfirmed|2005-01-26 21:48:45         |2005-01-29 15:47:00
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19595


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug libfortran/19595] eor does not work
  2005-01-23 20:50 [Bug libfortran/19595] New: eor and advance="yes" should not mix Thomas dot Koenig at online dot de
                   ` (8 preceding siblings ...)
  2005-01-29 15:47 ` pbrook at gcc dot gnu dot org
@ 2005-01-30 14:41 ` pinskia at gcc dot gnu dot org
  2005-02-13  0:20 ` pinskia at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-01-30 14:41 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.0.0                       |---


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19595


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug libfortran/19595] eor does not work
  2005-01-23 20:50 [Bug libfortran/19595] New: eor and advance="yes" should not mix Thomas dot Koenig at online dot de
                   ` (9 preceding siblings ...)
  2005-01-30 14:41 ` pinskia at gcc dot gnu dot org
@ 2005-02-13  0:20 ` pinskia at gcc dot gnu dot org
  2005-04-10  8:36 ` cvs-commit at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-02-13  0:20 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REOPENED                    |NEW


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19595


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug libfortran/19595] eor does not work
  2005-01-23 20:50 [Bug libfortran/19595] New: eor and advance="yes" should not mix Thomas dot Koenig at online dot de
                   ` (10 preceding siblings ...)
  2005-02-13  0:20 ` pinskia at gcc dot gnu dot org
@ 2005-04-10  8:36 ` cvs-commit at gcc dot gnu dot org
  2005-04-10  8:39 ` tkoenig at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-04-10  8:36 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2005-04-10 08:36 -------
Subject: Bug 19595

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	tkoenig@gcc.gnu.org	2005-04-10 08:35:40

Modified files:
	libgfortran    : ChangeLog 
	libgfortran/io : transfer.c 
	gcc/testsuite  : ChangeLog 
Added files:
	gcc/testsuite/gfortran.dg: eor_handling_1.f90 eor_handling_2.f90 
	                           eor_handling_3.f90 eor_handling_4.f90 
	                           eor_handling_5.f90 noadv_size.f90 
	                           pad_no.f90 

Log message:
	2005-04-10  Thomas Koenig <Thomas.Koenig@online.de>
	
	PR libfortran/17992
	PR libfortran/19568
	PR libfortran/19595
	PR libfortran/20005
	PR libfortran/20092
	PR libfortran/20131
	PR libfortran/20138
	PR libfortran/20661
	PR libfortran/20744
	* io/transfer.c (top level): eor_condition: New static variable.
	(read_sf): Remove unnecessary zeroing of buffer (there is enough
	information in its length).
	Return a string of length 0 (to be padded by caller) if EOR was
	seen previously.
	Remove erroneous special casing of EOR for standard input.
	Set eor_condition for non-advancing I/O if an end of line was
	detected.
	Increment ioparm.size if necessary.
	(formatted_transfer):  Skip the function if there is an EOR condition.
	(data_transfer_init):  Initialize eor_condition to zero (false).
	(next_record_r):  Clear sf_seen_eor if a \n has been seen already.
	(finalize_transfer):  If there is an EOR condition, raise the error.
	
	2005-04-10   Thomas Koenig  <Thomas.Koenig@online.de>
	
	* eor_handling_1.f90: New test case.
	* eor_handling_2.f90: New test case.
	* eor_handling_3.f90: New test case.
	* eor_handling_4.f90: New test case.
	* eor_handling_5.f90: New test case.
	* noadv_size.f90: New test case.
	* pad_no.f90: New test case.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/ChangeLog.diff?cvsroot=gcc&r1=1.188&r2=1.189
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/io/transfer.c.diff?cvsroot=gcc&r1=1.35&r2=1.36
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&r1=1.5320&r2=1.5321
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gfortran.dg/eor_handling_1.f90.diff?cvsroot=gcc&r1=NONE&r2=1.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gfortran.dg/eor_handling_2.f90.diff?cvsroot=gcc&r1=NONE&r2=1.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gfortran.dg/eor_handling_3.f90.diff?cvsroot=gcc&r1=NONE&r2=1.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gfortran.dg/eor_handling_4.f90.diff?cvsroot=gcc&r1=NONE&r2=1.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gfortran.dg/eor_handling_5.f90.diff?cvsroot=gcc&r1=NONE&r2=1.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gfortran.dg/noadv_size.f90.diff?cvsroot=gcc&r1=NONE&r2=1.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gfortran.dg/pad_no.f90.diff?cvsroot=gcc&r1=NONE&r2=1.1



-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19595


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug libfortran/19595] eor does not work
  2005-01-23 20:50 [Bug libfortran/19595] New: eor and advance="yes" should not mix Thomas dot Koenig at online dot de
                   ` (11 preceding siblings ...)
  2005-04-10  8:36 ` cvs-commit at gcc dot gnu dot org
@ 2005-04-10  8:39 ` tkoenig at gcc dot gnu dot org
  2005-05-03 19:41 ` [Bug libfortran/19595] [4.0 only] " cvs-commit at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: tkoenig at gcc dot gnu dot org @ 2005-04-10  8:39 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From tkoenig at gcc dot gnu dot org  2005-04-10 08:39 -------
Fixed in 4.1.0, waiting for 4.0 to reopen.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |patch
      Known to work|                            |4.1.0


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19595


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug libfortran/19595] [4.0 only] eor does not work
  2005-01-23 20:50 [Bug libfortran/19595] New: eor and advance="yes" should not mix Thomas dot Koenig at online dot de
                   ` (12 preceding siblings ...)
  2005-04-10  8:39 ` tkoenig at gcc dot gnu dot org
@ 2005-05-03 19:41 ` cvs-commit at gcc dot gnu dot org
  2005-05-03 19:45 ` tkoenig at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-05-03 19:41 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2005-05-03 19:40 -------
Subject: Bug 19595

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	gcc-4_0-branch
Changes by:	tkoenig@gcc.gnu.org	2005-05-03 19:39:36

Modified files:
	libgfortran    : ChangeLog 
	libgfortran/io : transfer.c 
	gcc/testsuite  : ChangeLog 
Added files:
	gcc/testsuite/gfortran.dg: eor_handling_1.f90 eor_handling_2.f90 
	                           eor_handling_3.f90 eor_handling_4.f90 
	                           eor_handling_5.f90 noadv_size.f90 
	                           pad_no.f90 

Log message:
	2005-05-03  Thomas Koenig <Thomas.Koenig@online.de>
	
	Backport from mainline:
	PR libfortran/17992
	PR libfortran/19568
	PR libfortran/19595
	PR libfortran/20005
	PR libfortran/20092
	PR libfortran/20131
	PR libfortran/20661
	PR libfortran/20744
	* io/transfer.c (top level): eor_condition: New static variable.
	(read_sf): Remove unnecessary zeroing of buffer (there is enough
	information in its length).
	Return a string of length 0 (to be padded by caller) if EOR was
	seen previously.
	Remove erroneous special casing of EOR for standard input.
	Set eor_condition for non-advancing I/O if an end of line was
	detected.
	Increment ioparm.size if necessary.
	(formatted_transfer):  Skip the function if there is an EOR condition.
	(data_transfer_init):  Initialize eor_condition to zero (false).
	(next_record_r):  Clear sf_seen_eor if a \n has been seen already.
	(finalize_transfer):  If there is an EOR condition, raise the error.
	
	2005-05-03  Thomas Koenig  <Thomas.Koenig@online.de>
	
	Backport from mainline:
	* eor_handling_1.f90: New test case.
	* eor_handling_2.f90: New test case.
	* eor_handling_3.f90: New test case.
	* eor_handling_4.f90: New test case.
	* eor_handling_5.f90: New test case.
	* noadv_size.f90: New test case.
	* pad_no.f90: New test case.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=1.163.2.22&r2=1.163.2.23
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libgfortran/io/transfer.c.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=1.32.2.2&r2=1.32.2.3
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=1.5084.2.156&r2=1.5084.2.157
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gfortran.dg/eor_handling_1.f90.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=NONE&r2=1.1.6.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gfortran.dg/eor_handling_2.f90.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=NONE&r2=1.1.6.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gfortran.dg/eor_handling_3.f90.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=NONE&r2=1.1.6.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gfortran.dg/eor_handling_4.f90.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=NONE&r2=1.1.6.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gfortran.dg/eor_handling_5.f90.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=NONE&r2=1.1.6.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gfortran.dg/noadv_size.f90.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=NONE&r2=1.1.6.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gfortran.dg/pad_no.f90.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=NONE&r2=1.1.6.1



-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19595


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug libfortran/19595] [4.0 only] eor does not work
  2005-01-23 20:50 [Bug libfortran/19595] New: eor and advance="yes" should not mix Thomas dot Koenig at online dot de
                   ` (13 preceding siblings ...)
  2005-05-03 19:41 ` [Bug libfortran/19595] [4.0 only] " cvs-commit at gcc dot gnu dot org
@ 2005-05-03 19:45 ` tkoenig at gcc dot gnu dot org
  2005-05-03 19:51 ` tkoenig at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: tkoenig at gcc dot gnu dot org @ 2005-05-03 19:45 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From tkoenig at gcc dot gnu dot org  2005-05-03 19:45 -------
Patch committed to 4.0.1.  Fixed.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19595


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug libfortran/19595] [4.0 only] eor does not work
  2005-01-23 20:50 [Bug libfortran/19595] New: eor and advance="yes" should not mix Thomas dot Koenig at online dot de
                   ` (14 preceding siblings ...)
  2005-05-03 19:45 ` tkoenig at gcc dot gnu dot org
@ 2005-05-03 19:51 ` tkoenig at gcc dot gnu dot org
  2005-05-03 19:51 ` tkoenig at gcc dot gnu dot org
  2005-06-05  7:44 ` pinskia at gcc dot gnu dot org
  17 siblings, 0 replies; 19+ messages in thread
From: tkoenig at gcc dot gnu dot org @ 2005-05-03 19:51 UTC (permalink / raw)
  To: gcc-bugs



-- 
Bug 19595 depends on bug 19568, which changed state.

Bug 19568 Summary: [4.0 only] incorrect formatted read
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19568

           What    |Old Value                   |New Value
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19595


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug libfortran/19595] [4.0 only] eor does not work
  2005-01-23 20:50 [Bug libfortran/19595] New: eor and advance="yes" should not mix Thomas dot Koenig at online dot de
                   ` (15 preceding siblings ...)
  2005-05-03 19:51 ` tkoenig at gcc dot gnu dot org
@ 2005-05-03 19:51 ` tkoenig at gcc dot gnu dot org
  2005-06-05  7:44 ` pinskia at gcc dot gnu dot org
  17 siblings, 0 replies; 19+ messages in thread
From: tkoenig at gcc dot gnu dot org @ 2005-05-03 19:51 UTC (permalink / raw)
  To: gcc-bugs



-- 
Bug 19595 depends on bug 20661, which changed state.

Bug 20661 Summary: [4.0 only] End of record not detected
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20661

           What    |Old Value                   |New Value
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19595


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug libfortran/19595] [4.0 only] eor does not work
  2005-01-23 20:50 [Bug libfortran/19595] New: eor and advance="yes" should not mix Thomas dot Koenig at online dot de
                   ` (16 preceding siblings ...)
  2005-05-03 19:51 ` tkoenig at gcc dot gnu dot org
@ 2005-06-05  7:44 ` pinskia at gcc dot gnu dot org
  17 siblings, 0 replies; 19+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-06-05  7:44 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |4.0.1


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19595


^ permalink raw reply	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2005-06-05  7:44 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-01-23 20:50 [Bug libfortran/19595] New: eor and advance="yes" should not mix Thomas dot Koenig at online dot de
2005-01-24  8:13 ` [Bug libfortran/19595] " Thomas dot Koenig at online dot de
2005-01-24 20:38 ` Thomas dot Koenig at online dot de
2005-01-25 12:45 ` Thomas dot Koenig at online dot de
2005-01-26 21:43 ` [Bug libfortran/19595] eor does not work Thomas dot Koenig at online dot de
2005-01-26 21:48 ` pinskia at gcc dot gnu dot org
2005-01-29 15:45 ` cvs-commit at gcc dot gnu dot org
2005-01-29 15:46 ` pbrook at gcc dot gnu dot org
2005-01-29 15:47 ` pbrook at gcc dot gnu dot org
2005-01-29 15:47 ` pbrook at gcc dot gnu dot org
2005-01-30 14:41 ` pinskia at gcc dot gnu dot org
2005-02-13  0:20 ` pinskia at gcc dot gnu dot org
2005-04-10  8:36 ` cvs-commit at gcc dot gnu dot org
2005-04-10  8:39 ` tkoenig at gcc dot gnu dot org
2005-05-03 19:41 ` [Bug libfortran/19595] [4.0 only] " cvs-commit at gcc dot gnu dot org
2005-05-03 19:45 ` tkoenig at gcc dot gnu dot org
2005-05-03 19:51 ` tkoenig at gcc dot gnu dot org
2005-05-03 19:51 ` tkoenig at gcc dot gnu dot org
2005-06-05  7:44 ` pinskia at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).