public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libfortran/25116]  New: [regression wrt g77] A namelist read from an unnamed file should read from fort.n
@ 2005-11-27 11:20 toon at moene dot indiv dot nluug dot nl
  2005-11-27 11:38 ` [Bug libfortran/25116] [regression wrt g77] namelist read from non-opened file fxcoudert at gcc dot gnu dot org
                   ` (12 more replies)
  0 siblings, 13 replies; 16+ messages in thread
From: toon at moene dot indiv dot nluug dot nl @ 2005-11-27 11:20 UTC (permalink / raw)
  To: gcc-bugs

Gfortran should read a namelist from a file that has not
been given a name on an open statement from the fort.n
where n is the unit number in the read statement.
(this a defacto standard way to do it on Unix systems).
Hmm, in lynx I do not see the attach file option, so here goes:
      namelist /nlist/ i, a
      read(9,nlist)
      write(6,nlist)
      end
with the following contents of fort.9:
 &nlist i=1, a=3.5 /
should print the namelist to stdout, not give "end of file".
It works if you add "open(9,file='fort.9')" before the read.
Blocks: HIRLAM.


-- 
           Summary: [regression wrt g77] A namelist read from an unnamed
                    file should read from fort.n
           Product: gcc
           Version: 4.0.3
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libfortran
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: toon at moene dot indiv dot nluug dot nl


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


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

* [Bug libfortran/25116] [regression wrt g77] namelist read from non-opened file
  2005-11-27 11:20 [Bug libfortran/25116] New: [regression wrt g77] A namelist read from an unnamed file should read from fort.n toon at moene dot indiv dot nluug dot nl
@ 2005-11-27 11:38 ` fxcoudert at gcc dot gnu dot org
  2005-11-27 23:14 ` fxcoudert at gcc dot gnu dot org
                   ` (11 subsequent siblings)
  12 siblings, 0 replies; 16+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2005-11-27 11:38 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from fxcoudert at gcc dot gnu dot org  2005-11-27 11:38 -------
Confirmed on mainline. Interesting, because the Access time of the fort.9 file
is indeed modified, and the error message is:

At line 2 of file nml.f
Fortran runtime error: End of file


-- 

fxcoudert at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |fxcoudert at gcc dot gnu dot
                   |                            |org
OtherBugsDependingO|                            |19292
              nThis|                            |
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2005-11-27 11:38:52
               date|                            |
            Summary|[regression wrt g77] A      |[regression wrt g77]
                   |namelist read from an       |namelist read from non-
                   |unnamed file should read    |opened file
                   |from fort.n                 |


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


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

* [Bug libfortran/25116] [regression wrt g77] namelist read from non-opened file
  2005-11-27 11:20 [Bug libfortran/25116] New: [regression wrt g77] A namelist read from an unnamed file should read from fort.n toon at moene dot indiv dot nluug dot nl
  2005-11-27 11:38 ` [Bug libfortran/25116] [regression wrt g77] namelist read from non-opened file fxcoudert at gcc dot gnu dot org
@ 2005-11-27 23:14 ` fxcoudert at gcc dot gnu dot org
  2005-11-28  1:40   ` Jerry DeLisle
  2005-11-28  1:40 ` jvdelisle at verizon dot net
                   ` (10 subsequent siblings)
  12 siblings, 1 reply; 16+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2005-11-27 23:14 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from fxcoudert at gcc dot gnu dot org  2005-11-27 23:14 -------
(In reply to comment #1)
> At line 2 of file nml.f
> Fortran runtime error: End of file

Debugging shows that the bytes_left field of the stream is not set correctly
(2338621003140048416 instead of 9223372036854775807). It is set in transfer.c,
line 1143.


-- 

fxcoudert at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Last reconfirmed|2005-11-27 11:38:52         |2005-11-27 23:14:43
               date|                            |


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


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

* Re: [Bug libfortran/25116] [regression wrt g77] namelist read from  non-opened file
  2005-11-27 23:14 ` fxcoudert at gcc dot gnu dot org
@ 2005-11-28  1:40   ` Jerry DeLisle
  0 siblings, 0 replies; 16+ messages in thread
From: Jerry DeLisle @ 2005-11-28  1:40 UTC (permalink / raw)
  To: gcc-bugzilla; +Cc: gcc-bugs, fxcoudert

fxcoudert at gcc dot gnu dot org wrote:
> ------- Comment #2 from fxcoudert at gcc dot gnu dot org  2005-11-27 23:14 -------
> (In reply to comment #1)
> 
>>At line 2 of file nml.f
>>Fortran runtime error: End of file
> 
> 
> Debugging shows that the bytes_left field of the stream is not set correctly
> (2338621003140048416 instead of 9223372036854775807). It is set in transfer.c,
> line 1143.
> 
> 
If you mean this:


   memcpy (&i, p, sizeof (gfc_offset));
   dtp->u.p.current_unit->bytes_left = i;

Maybe it should be a -=

Jerry




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

* [Bug libfortran/25116] [regression wrt g77] namelist read from non-opened file
  2005-11-27 11:20 [Bug libfortran/25116] New: [regression wrt g77] A namelist read from an unnamed file should read from fort.n toon at moene dot indiv dot nluug dot nl
  2005-11-27 11:38 ` [Bug libfortran/25116] [regression wrt g77] namelist read from non-opened file fxcoudert at gcc dot gnu dot org
  2005-11-27 23:14 ` fxcoudert at gcc dot gnu dot org
@ 2005-11-28  1:40 ` jvdelisle at verizon dot net
  2005-11-28  7:08 ` [Bug libfortran/25116] " fxcoudert at gcc dot gnu dot org
                   ` (9 subsequent siblings)
  12 siblings, 0 replies; 16+ messages in thread
From: jvdelisle at verizon dot net @ 2005-11-28  1:40 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from jvdelisle at verizon dot net  2005-11-28 01:40 -------
Subject: Re:  [regression wrt g77] namelist read from
 non-opened file

fxcoudert at gcc dot gnu dot org wrote:
> ------- Comment #2 from fxcoudert at gcc dot gnu dot org  2005-11-27 23:14 -------
> (In reply to comment #1)
> 
>>At line 2 of file nml.f
>>Fortran runtime error: End of file
> 
> 
> Debugging shows that the bytes_left field of the stream is not set correctly
> (2338621003140048416 instead of 9223372036854775807). It is set in transfer.c,
> line 1143.
> 
> 
If you mean this:


   memcpy (&i, p, sizeof (gfc_offset));
   dtp->u.p.current_unit->bytes_left = i;

Maybe it should be a -=

Jerry


-- 


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


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

* [Bug libfortran/25116] namelist read from non-opened file
  2005-11-27 11:20 [Bug libfortran/25116] New: [regression wrt g77] A namelist read from an unnamed file should read from fort.n toon at moene dot indiv dot nluug dot nl
                   ` (2 preceding siblings ...)
  2005-11-28  1:40 ` jvdelisle at verizon dot net
@ 2005-11-28  7:08 ` fxcoudert at gcc dot gnu dot org
  2005-11-28  8:09   ` Jerry DeLisle
  2005-11-28  8:09 ` jvdelisle at verizon dot net
                   ` (8 subsequent siblings)
  12 siblings, 1 reply; 16+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2005-11-28  7:08 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from fxcoudert at gcc dot gnu dot org  2005-11-28 07:08 -------
No, it's in fact easier than that. We shouldn't come into us_read for this
file, which is formatted! Probably a bad default flag is set.


-- 

fxcoudert at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Last reconfirmed|2005-11-27 23:14:43         |2005-11-28 07:08:02
               date|                            |


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


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

* [Bug libfortran/25116] namelist read from non-opened file
  2005-11-27 11:20 [Bug libfortran/25116] New: [regression wrt g77] A namelist read from an unnamed file should read from fort.n toon at moene dot indiv dot nluug dot nl
                   ` (3 preceding siblings ...)
  2005-11-28  7:08 ` [Bug libfortran/25116] " fxcoudert at gcc dot gnu dot org
@ 2005-11-28  8:09 ` jvdelisle at verizon dot net
  2005-11-28 15:36 ` toon at moene dot indiv dot nluug dot nl
                   ` (7 subsequent siblings)
  12 siblings, 0 replies; 16+ messages in thread
From: jvdelisle at verizon dot net @ 2005-11-28  8:09 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from jvdelisle at verizon dot net  2005-11-28 08:09 -------
Subject: Re:  namelist read from non-opened file

fxcoudert at gcc dot gnu dot org wrote:
> ------- Comment #4 from fxcoudert at gcc dot gnu dot org  2005-11-28 07:08 -------
> No, it's in fact easier than that. We shouldn't come into us_read for this
> file, which is formatted! Probably a bad default flag is set.
> 
> 
I think you are right.  I have been putting in debug statements all over and 
find that we are asking the wrong length of reads, 8 characters, instead of 1
in 
the failing case.  I will get back to this in a day or so.


-- 


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


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

* Re: [Bug libfortran/25116] namelist read from non-opened file
  2005-11-28  7:08 ` [Bug libfortran/25116] " fxcoudert at gcc dot gnu dot org
@ 2005-11-28  8:09   ` Jerry DeLisle
  0 siblings, 0 replies; 16+ messages in thread
From: Jerry DeLisle @ 2005-11-28  8:09 UTC (permalink / raw)
  To: gcc-bugzilla; +Cc: gcc-bugs

fxcoudert at gcc dot gnu dot org wrote:
> ------- Comment #4 from fxcoudert at gcc dot gnu dot org  2005-11-28 07:08 -------
> No, it's in fact easier than that. We shouldn't come into us_read for this
> file, which is formatted! Probably a bad default flag is set.
> 
> 
I think you are right.  I have been putting in debug statements all over and 
find that we are asking the wrong length of reads, 8 characters, instead of 1 in 
the failing case.  I will get back to this in a day or so.


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

* [Bug libfortran/25116] namelist read from non-opened file
  2005-11-27 11:20 [Bug libfortran/25116] New: [regression wrt g77] A namelist read from an unnamed file should read from fort.n toon at moene dot indiv dot nluug dot nl
                   ` (4 preceding siblings ...)
  2005-11-28  8:09 ` jvdelisle at verizon dot net
@ 2005-11-28 15:36 ` toon at moene dot indiv dot nluug dot nl
  2005-11-28 15:59 ` fxcoudert at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  12 siblings, 0 replies; 16+ messages in thread
From: toon at moene dot indiv dot nluug dot nl @ 2005-11-28 15:36 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from toon at moene dot indiv dot nluug dot nl  2005-11-28 15:36 -------
> I think you are right.  I have been putting in debug statements all over and 
> find that we are asking the wrong length of reads, 8 characters, instead of 1
> in the failing case.  I will get back to this in a day or so.

Isn't this a sign that we are treating the read as UNFORMATTED ?  Which would
be wrong as namelist reads are always FORMATTED (note: the file isn't opened,
so that cannot discern between FORMATTED and UNFORMATTED.


-- 


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


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

* [Bug libfortran/25116] namelist read from non-opened file
  2005-11-27 11:20 [Bug libfortran/25116] New: [regression wrt g77] A namelist read from an unnamed file should read from fort.n toon at moene dot indiv dot nluug dot nl
                   ` (5 preceding siblings ...)
  2005-11-28 15:36 ` toon at moene dot indiv dot nluug dot nl
@ 2005-11-28 15:59 ` fxcoudert at gcc dot gnu dot org
  2005-11-28 21:07 ` jvdelisle at verizon dot net
                   ` (5 subsequent siblings)
  12 siblings, 0 replies; 16+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2005-11-28 15:59 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from fxcoudert at gcc dot gnu dot org  2005-11-28 15:59 -------
I think the following patch (no time yet to regtest it, and won't have time
soon, please feel free to test it) fixes it:

Index: transfer.c
===================================================================
--- transfer.c  (revision 107563)
+++ transfer.c  (working copy)
@@ -1239,11 +1239,14 @@
      memset (&u_flags, '\0', sizeof (u_flags));
      u_flags.access = ACCESS_SEQUENTIAL;
      u_flags.action = ACTION_READWRITE;
+
      /* Is it unformatted?  */
-     if (!(cf & (IOPARM_DT_HAS_FORMAT | IOPARM_DT_LIST_FORMAT)))
+     if (!(cf & (IOPARM_DT_HAS_FORMAT | IOPARM_DT_LIST_FORMAT
+                | IOPARM_DT_IONML_SET)))
        u_flags.form = FORM_UNFORMATTED;
      else
        u_flags.form = FORM_UNSPECIFIED;
+
      u_flags.delim = DELIM_UNSPECIFIED;
      u_flags.blank = BLANK_UNSPECIFIED;
      u_flags.pad = PAD_UNSPECIFIED;


-- 

fxcoudert at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |patch


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


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

* [Bug libfortran/25116] namelist read from non-opened file
  2005-11-27 11:20 [Bug libfortran/25116] New: [regression wrt g77] A namelist read from an unnamed file should read from fort.n toon at moene dot indiv dot nluug dot nl
                   ` (6 preceding siblings ...)
  2005-11-28 15:59 ` fxcoudert at gcc dot gnu dot org
@ 2005-11-28 21:07 ` jvdelisle at verizon dot net
  2005-11-29 19:20 ` toon at moene dot indiv dot nluug dot nl
                   ` (4 subsequent siblings)
  12 siblings, 0 replies; 16+ messages in thread
From: jvdelisle at verizon dot net @ 2005-11-28 21:07 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from jvdelisle at verizon dot net  2005-11-28 21:07 -------
Subject: Re:  namelist read from non-opened file

fxcoudert at gcc dot gnu dot org wrote:
> +
>       /* Is it unformatted?  */
> -     if (!(cf & (IOPARM_DT_HAS_FORMAT | IOPARM_DT_LIST_FORMAT)))
> +     if (!(cf & (IOPARM_DT_HAS_FORMAT | IOPARM_DT_LIST_FORMAT
> +                | IOPARM_DT_IONML_SET)))

Yes, I think this is the exact spot I was looking at last night.  I was just 
going to go find the right namelist define to use.  I assume you tested this
and 
it works, of course.
  :)


-- 


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


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

* [Bug libfortran/25116] namelist read from non-opened file
  2005-11-27 11:20 [Bug libfortran/25116] New: [regression wrt g77] A namelist read from an unnamed file should read from fort.n toon at moene dot indiv dot nluug dot nl
                   ` (7 preceding siblings ...)
  2005-11-28 21:07 ` jvdelisle at verizon dot net
@ 2005-11-29 19:20 ` toon at moene dot indiv dot nluug dot nl
  2005-12-02 16:46 ` fxcoudert at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  12 siblings, 0 replies; 16+ messages in thread
From: toon at moene dot indiv dot nluug dot nl @ 2005-11-29 19:20 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from toon at moene dot indiv dot nluug dot nl  2005-11-29 19:20 -------
FX,

Your patch solved the problem for me.
AFAICS, this patch is indeed the correct fix for this problem.
Please apply it to (at least) 4.1 and trunk.
It might be appropriate for the 4.0 branch, too.


-- 


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


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

* [Bug libfortran/25116] namelist read from non-opened file
  2005-11-27 11:20 [Bug libfortran/25116] New: [regression wrt g77] A namelist read from an unnamed file should read from fort.n toon at moene dot indiv dot nluug dot nl
                   ` (8 preceding siblings ...)
  2005-11-29 19:20 ` toon at moene dot indiv dot nluug dot nl
@ 2005-12-02 16:46 ` fxcoudert at gcc dot gnu dot org
  2005-12-02 18:08 ` [Bug libfortran/25116] [4.0/4.1] " fxcoudert at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  12 siblings, 0 replies; 16+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2005-12-02 16:46 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #10 from fxcoudert at gcc dot gnu dot org  2005-12-02 16:46 -------
Subject: Bug 25116

Author: fxcoudert
Date: Fri Dec  2 16:46:49 2005
New Revision: 107900

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=107900
Log:
        PR libfortran/25116
        * io/transfer.c (data_transfer_init): Don't set the default for
        namelist I/O on preconnected files to UNFORMATTED.

Modified:
    trunk/libgfortran/ChangeLog
    trunk/libgfortran/io/transfer.c


-- 


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


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

* [Bug libfortran/25116] [4.0/4.1] namelist read from non-opened file
  2005-11-27 11:20 [Bug libfortran/25116] New: [regression wrt g77] A namelist read from an unnamed file should read from fort.n toon at moene dot indiv dot nluug dot nl
                   ` (9 preceding siblings ...)
  2005-12-02 16:46 ` fxcoudert at gcc dot gnu dot org
@ 2005-12-02 18:08 ` fxcoudert at gcc dot gnu dot org
  2005-12-09 18:50 ` fxcoudert at gcc dot gnu dot org
  2005-12-09 18:52 ` [Bug libfortran/25116] [4.0] " fxcoudert at gcc dot gnu dot org
  12 siblings, 0 replies; 16+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2005-12-02 18:08 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #11 from fxcoudert at gcc dot gnu dot org  2005-12-02 18:08 -------
Commited to mainline, waiting a bit before committing to 4.1.


-- 

fxcoudert at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |fxcoudert at gcc dot gnu dot
                   |dot org                     |org
             Status|NEW                         |ASSIGNED
   Last reconfirmed|2005-11-28 07:08:02         |2005-12-02 18:08:49
               date|                            |
            Summary|namelist read from non-     |[4.0/4.1] namelist read from
                   |opened file                 |non-opened file
   Target Milestone|---                         |4.1.0


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


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

* [Bug libfortran/25116] [4.0/4.1] namelist read from non-opened file
  2005-11-27 11:20 [Bug libfortran/25116] New: [regression wrt g77] A namelist read from an unnamed file should read from fort.n toon at moene dot indiv dot nluug dot nl
                   ` (10 preceding siblings ...)
  2005-12-02 18:08 ` [Bug libfortran/25116] [4.0/4.1] " fxcoudert at gcc dot gnu dot org
@ 2005-12-09 18:50 ` fxcoudert at gcc dot gnu dot org
  2005-12-09 18:52 ` [Bug libfortran/25116] [4.0] " fxcoudert at gcc dot gnu dot org
  12 siblings, 0 replies; 16+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2005-12-09 18:50 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #12 from fxcoudert at gcc dot gnu dot org  2005-12-09 18:50 -------
Subject: Bug 25116

Author: fxcoudert
Date: Fri Dec  9 18:50:48 2005
New Revision: 108314

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=108314
Log:
        PR libfortran/25116
        * io/transfer.c (data_transfer_init): Don't set the default for
        namelist I/O on preconnected files to UNFORMATTED.

Modified:
    branches/gcc-4_1-branch/libgfortran/ChangeLog
    branches/gcc-4_1-branch/libgfortran/io/transfer.c


-- 


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


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

* [Bug libfortran/25116] [4.0] namelist read from non-opened file
  2005-11-27 11:20 [Bug libfortran/25116] New: [regression wrt g77] A namelist read from an unnamed file should read from fort.n toon at moene dot indiv dot nluug dot nl
                   ` (11 preceding siblings ...)
  2005-12-09 18:50 ` fxcoudert at gcc dot gnu dot org
@ 2005-12-09 18:52 ` fxcoudert at gcc dot gnu dot org
  12 siblings, 0 replies; 16+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2005-12-09 18:52 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #13 from fxcoudert at gcc dot gnu dot org  2005-12-09 18:52 -------
Committed to 4.1


-- 

fxcoudert at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
      Known to fail|                            |4.0.3
      Known to work|                            |4.2.0 4.1.0
         Resolution|                            |FIXED
            Summary|[4.0/4.1] namelist read from|[4.0] namelist read from
                   |non-opened file             |non-opened file


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


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

end of thread, other threads:[~2005-12-09 18:52 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-11-27 11:20 [Bug libfortran/25116] New: [regression wrt g77] A namelist read from an unnamed file should read from fort.n toon at moene dot indiv dot nluug dot nl
2005-11-27 11:38 ` [Bug libfortran/25116] [regression wrt g77] namelist read from non-opened file fxcoudert at gcc dot gnu dot org
2005-11-27 23:14 ` fxcoudert at gcc dot gnu dot org
2005-11-28  1:40   ` Jerry DeLisle
2005-11-28  1:40 ` jvdelisle at verizon dot net
2005-11-28  7:08 ` [Bug libfortran/25116] " fxcoudert at gcc dot gnu dot org
2005-11-28  8:09   ` Jerry DeLisle
2005-11-28  8:09 ` jvdelisle at verizon dot net
2005-11-28 15:36 ` toon at moene dot indiv dot nluug dot nl
2005-11-28 15:59 ` fxcoudert at gcc dot gnu dot org
2005-11-28 21:07 ` jvdelisle at verizon dot net
2005-11-29 19:20 ` toon at moene dot indiv dot nluug dot nl
2005-12-02 16:46 ` fxcoudert at gcc dot gnu dot org
2005-12-02 18:08 ` [Bug libfortran/25116] [4.0/4.1] " fxcoudert at gcc dot gnu dot org
2005-12-09 18:50 ` fxcoudert at gcc dot gnu dot org
2005-12-09 18:52 ` [Bug libfortran/25116] [4.0] " fxcoudert 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).