public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/20661] New: End of record not detected
@ 2005-03-27 21:59 kargl at gcc dot gnu dot org
  2005-03-27 22:00 ` [Bug fortran/20661] " kargl at gcc dot gnu dot org
                   ` (11 more replies)
  0 siblings, 12 replies; 13+ messages in thread
From: kargl at gcc dot gnu dot org @ 2005-03-27 21:59 UTC (permalink / raw)
  To: gcc-bugs

This fc002.f95 from Walt Brainerd.

! End of record is not detected
!    on second READ
! iostats should be 0, 0, -2, -1

-- 
           Summary: End of record not detected
           Product: gcc
           Version: 4.0.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: fortran
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: kargl at gcc dot gnu dot org
                CC: gcc-bugs at gcc dot gnu dot org


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


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

* [Bug fortran/20661] End of record not detected
  2005-03-27 21:59 [Bug fortran/20661] New: End of record not detected kargl at gcc dot gnu dot org
@ 2005-03-27 22:00 ` kargl at gcc dot gnu dot org
  2005-03-27 22:02 ` [Bug libfortran/20661] " pinskia at gcc dot gnu dot org
                   ` (10 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: kargl at gcc dot gnu dot org @ 2005-03-27 22:00 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From kargl at gcc dot gnu dot org  2005-03-27 22:00 -------
Created an attachment (id=8464)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=8464&action=view)
Walt's program


-- 


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


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

* [Bug libfortran/20661] End of record not detected
  2005-03-27 21:59 [Bug fortran/20661] New: End of record not detected kargl at gcc dot gnu dot org
  2005-03-27 22:00 ` [Bug fortran/20661] " kargl at gcc dot gnu dot org
@ 2005-03-27 22:02 ` pinskia at gcc dot gnu dot org
  2005-03-28 17:48 ` tobi at gcc dot gnu dot org
                   ` (9 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-03-27 22:02 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-03-27 22:02 -------
Confirmed.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
          Component|fortran                     |libfortran
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2005-03-27 22:02:41
               date|                            |


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


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

* [Bug libfortran/20661] End of record not detected
  2005-03-27 21:59 [Bug fortran/20661] New: End of record not detected kargl at gcc dot gnu dot org
  2005-03-27 22:00 ` [Bug fortran/20661] " kargl at gcc dot gnu dot org
  2005-03-27 22:02 ` [Bug libfortran/20661] " pinskia at gcc dot gnu dot org
@ 2005-03-28 17:48 ` tobi at gcc dot gnu dot org
  2005-03-29 15:11 ` Thomas dot Koenig at online dot de
                   ` (8 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: tobi at gcc dot gnu dot org @ 2005-03-28 17:48 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From tobi at gcc dot gnu dot org  2005-03-28 17:48 -------
To clarify this:
! End of record is not detected
!    on second READ
! iostats should be 0, 0, -2, -1

The standard says:
"Execution of an input/output statement containing the IOSTAT= specifier causes
the variable specified in the IOSTAT= specifier to become defined
(1) With a zero value if neither an error condition, and end-of-file condition,
nor an end-of-record condition occurs,
(2) With a processor-dependent positive integer value if an error condition occurs,
(3) With a processor-dependent negative integer value if an end-of-ile condition
occurs and no error condition occurs, or
(4) With a processor-dependent negative integer value different from the
end-of-file value if and end-of-record condition occurs and no error condition
or end-of-file condition occurs.

Current output from gfortran:
 iostat           0
 iostat           0 x
 iostat           0
 iostat          -1

-- 


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


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

* [Bug libfortran/20661] End of record not detected
  2005-03-27 21:59 [Bug fortran/20661] New: End of record not detected kargl at gcc dot gnu dot org
                   ` (2 preceding siblings ...)
  2005-03-28 17:48 ` tobi at gcc dot gnu dot org
@ 2005-03-29 15:11 ` Thomas dot Koenig at online dot de
  2005-04-01 13:34 ` Thomas dot Koenig at online dot de
                   ` (7 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Thomas dot Koenig at online dot de @ 2005-03-29 15:11 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From Thomas dot Koenig at online dot de  2005-03-29 15:11 -------
I'll try and have a look.

Hopefully, my copyright papers that I sent off on 2005-03-19 will
come through sometime soon, because the end-of-record patch
at http://gcc.gnu.org/ml/gcc-patches/2005-03/msg00729.html (or
something that does the same job) needs to be applied before
going into this one.

Thomas

-- 


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


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

* [Bug libfortran/20661] End of record not detected
  2005-03-27 21:59 [Bug fortran/20661] New: End of record not detected kargl at gcc dot gnu dot org
                   ` (3 preceding siblings ...)
  2005-03-29 15:11 ` Thomas dot Koenig at online dot de
@ 2005-04-01 13:34 ` Thomas dot Koenig at online dot de
  2005-04-10  8:36 ` cvs-commit at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Thomas dot Koenig at online dot de @ 2005-04-01 13:34 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From Thomas dot Koenig at online dot de  2005-04-01 13:34 -------
This patch fixes the test case.  It also includes my
EOR patch for advancing I/O.

This is regression-tested on mainline.  I'll submit a proper
patch when I have finished regression-testing it on 4.0.

--- transfer.c.orig     2005-03-25 14:35:29.000000000 +0100
+++ transfer.c  2005-04-01 15:34:19.000000000 +0200
@@ -150,7 +150,12 @@ read_sf (int *length)
   else
     p = base = data;

-  memset(base,'\0',*length);
+  memset(base,' ',*length);
+
+  /* If we have seen an eor previously, return blanks.  */
+
+  if (sf_seen_eor)
+    return base;

   current_unit->bytes_left = options.default_recl;
   readlen = 1;
@@ -179,12 +184,6 @@ read_sf (int *length)

       if (readlen < 1 || *q == '\n' || *q == '\r')
        {
-         /* ??? What is this for?  */
-          if (current_unit->unit_number == options.stdin_unit)
-            {
-              if (n <= 0)
-                continue;
-            }
          /* Unexpected end of line.  */
          if (current_unit->flags.pad == PAD_NO)
            {
@@ -193,8 +192,13 @@ read_sf (int *length)
            }

          current_unit->bytes_left = 0;
-         *length = n;
           sf_seen_eor = 1;
+
+         if (advance_status == ADVANCE_NO)
+           ioparm.library_return = LIBRARY_EOR;
+         else
+           *length = n;
+
          break;
        }

@@ -748,6 +752,9 @@ formatted_transfer (bt type, void *p, in
          internal_error ("Bad format node");
        }

+      if (ioparm.library_return == LIBRARY_EOR)
+       generate_error (ERROR_EOR, NULL);
+
       /* Free a buffer that we had to allocate during a sequential
         formatted read of a block that was larger than the static
         buffer.  */
@@ -1223,7 +1230,10 @@ next_record_r (int done)
       length = 1;
       /* sf_read has already terminated input because of an '\n'  */
       if (sf_seen_eor)
-         break;
+       {
+         sf_seen_eor=0;
+         break;
+       }

       do
         {


-- 


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


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

* [Bug libfortran/20661] End of record not detected
  2005-03-27 21:59 [Bug fortran/20661] New: End of record not detected kargl at gcc dot gnu dot org
                   ` (4 preceding siblings ...)
  2005-04-01 13:34 ` Thomas dot Koenig at online dot de
@ 2005-04-10  8:36 ` cvs-commit at gcc dot gnu dot org
  2005-04-10  8:44 ` tkoenig at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  11 siblings, 0 replies; 13+ 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 20661

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=20661


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

* [Bug libfortran/20661] End of record not detected
  2005-03-27 21:59 [Bug fortran/20661] New: End of record not detected kargl at gcc dot gnu dot org
                   ` (5 preceding siblings ...)
  2005-04-10  8:36 ` cvs-commit at gcc dot gnu dot org
@ 2005-04-10  8:44 ` tkoenig at gcc dot gnu dot org
  2005-05-03 19:41 ` [Bug libfortran/20661] [4.0 only] " cvs-commit at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: tkoenig at gcc dot gnu dot org @ 2005-04-10  8:44 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From tkoenig at gcc dot gnu dot org  2005-04-10 08:44 -------
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=20661


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

* [Bug libfortran/20661] [4.0 only] End of record not detected
  2005-03-27 21:59 [Bug fortran/20661] New: End of record not detected kargl at gcc dot gnu dot org
                   ` (6 preceding siblings ...)
  2005-04-10  8:44 ` tkoenig at gcc dot gnu dot org
@ 2005-05-03 19:41 ` cvs-commit at gcc dot gnu dot org
  2005-05-03 19:48 ` tkoenig at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  11 siblings, 0 replies; 13+ 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 20661

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=20661


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

* [Bug libfortran/20661] [4.0 only] End of record not detected
  2005-03-27 21:59 [Bug fortran/20661] New: End of record not detected kargl at gcc dot gnu dot org
                   ` (7 preceding siblings ...)
  2005-05-03 19:41 ` [Bug libfortran/20661] [4.0 only] " cvs-commit at gcc dot gnu dot org
@ 2005-05-03 19:48 ` tkoenig at gcc dot gnu dot org
  2005-05-03 19:51 ` tkoenig at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: tkoenig at gcc dot gnu dot org @ 2005-05-03 19:48 UTC (permalink / raw)
  To: gcc-bugs


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

-- 


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


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

* [Bug libfortran/20661] [4.0 only] End of record not detected
  2005-03-27 21:59 [Bug fortran/20661] New: End of record not detected kargl at gcc dot gnu dot org
                   ` (8 preceding siblings ...)
  2005-05-03 19:48 ` tkoenig at gcc dot gnu dot org
@ 2005-05-03 19:51 ` tkoenig at gcc dot gnu dot org
  2005-05-03 19:52 ` tkoenig at gcc dot gnu dot org
  2005-06-05  7:45 ` pinskia at gcc dot gnu dot org
  11 siblings, 0 replies; 13+ messages in thread
From: tkoenig at gcc dot gnu dot org @ 2005-05-03 19:51 UTC (permalink / raw)
  To: gcc-bugs


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

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


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


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

* [Bug libfortran/20661] [4.0 only] End of record not detected
  2005-03-27 21:59 [Bug fortran/20661] New: End of record not detected kargl at gcc dot gnu dot org
                   ` (9 preceding siblings ...)
  2005-05-03 19:51 ` tkoenig at gcc dot gnu dot org
@ 2005-05-03 19:52 ` tkoenig at gcc dot gnu dot org
  2005-06-05  7:45 ` pinskia at gcc dot gnu dot org
  11 siblings, 0 replies; 13+ messages in thread
From: tkoenig at gcc dot gnu dot org @ 2005-05-03 19:52 UTC (permalink / raw)
  To: gcc-bugs



-- 
Bug 20661 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=20661


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

* [Bug libfortran/20661] [4.0 only] End of record not detected
  2005-03-27 21:59 [Bug fortran/20661] New: End of record not detected kargl at gcc dot gnu dot org
                   ` (10 preceding siblings ...)
  2005-05-03 19:52 ` tkoenig at gcc dot gnu dot org
@ 2005-06-05  7:45 ` pinskia at gcc dot gnu dot org
  11 siblings, 0 replies; 13+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-06-05  7:45 UTC (permalink / raw)
  To: gcc-bugs



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


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


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

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

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-03-27 21:59 [Bug fortran/20661] New: End of record not detected kargl at gcc dot gnu dot org
2005-03-27 22:00 ` [Bug fortran/20661] " kargl at gcc dot gnu dot org
2005-03-27 22:02 ` [Bug libfortran/20661] " pinskia at gcc dot gnu dot org
2005-03-28 17:48 ` tobi at gcc dot gnu dot org
2005-03-29 15:11 ` Thomas dot Koenig at online dot de
2005-04-01 13:34 ` Thomas dot Koenig at online dot de
2005-04-10  8:36 ` cvs-commit at gcc dot gnu dot org
2005-04-10  8:44 ` tkoenig at gcc dot gnu dot org
2005-05-03 19:41 ` [Bug libfortran/20661] [4.0 only] " cvs-commit at gcc dot gnu dot org
2005-05-03 19:48 ` tkoenig at gcc dot gnu dot org
2005-05-03 19:51 ` tkoenig at gcc dot gnu dot org
2005-05-03 19:52 ` tkoenig at gcc dot gnu dot org
2005-06-05  7:45 ` 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).