public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/29563]  New: Internal read loses data.
@ 2006-10-23 14:08 refson dot temp at ntlworld dot com
  2006-10-23 15:54 ` [Bug fortran/29563] " pault at gcc dot gnu dot org
                   ` (14 more replies)
  0 siblings, 15 replies; 16+ messages in thread
From: refson dot temp at ntlworld dot com @ 2006-10-23 14:08 UTC (permalink / raw)
  To: gcc-bugs

gcc version 4.3.0 20061023 (experimental)
Mandriva 2006.0

The program

   program gfbread
     character(len=256), dimension(3) :: block_data = (/'1 2 3','4 5 6','7 8
9'/)
     real(kind=8), dimension(3,3) :: tmp_box
     read(block_data,*,iostat=iostat)((tmp_box(i,j),j=1,3),i=1,3)
     write(*,'(3F10.5)') ((tmp_box(i,j),j=1,3),i=1,3)
   end program gfbread

prints the output 

   1.00000   2.00000   3.00000
   4.00000   5.00000   6.00000
   7.00000   8.00000   0.00000

instead of the correct

   1.00000   2.00000   3.00000
   4.00000   5.00000   6.00000
   7.00000   8.00000   9.00000


-- 
           Summary: Internal read loses data.
           Product: gcc
           Version: tree-ssa
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: refson dot temp at ntlworld dot com
  GCC host triplet: i686-pc-linux-gnu
GCC target triplet: i686-pc-linux-gnu


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


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

* [Bug fortran/29563] Internal read loses data.
  2006-10-23 14:08 [Bug fortran/29563] New: Internal read loses data refson dot temp at ntlworld dot com
@ 2006-10-23 15:54 ` pault at gcc dot gnu dot org
  2006-10-24  2:12 ` jvdelisle at gcc dot gnu dot org
                   ` (13 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: pault at gcc dot gnu dot org @ 2006-10-23 15:54 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from pault at gcc dot gnu dot org  2006-10-23 15:54 -------
   program gfbread
     character(len=256), dimension(3) :: block_data = (/' 1 2 3',' 4 5 6',' 7 8
9'/)
     real(kind=8), dimension(3,3) :: tmp_box
     read(block_data,'(3(3f2.0/))',iostat=iostat)((tmp_box(i,j),j=1,3),i=1,3)
     write(*,'(3F10.5)') ((tmp_box(i,j),j=1,3),i=1,3)
   end program gfbread

works fine - the only difference in the code is the io call, so I would guess
that something is awry with list_read.c

Any ideas, Jerry?

Paul


-- 

pault at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jvdelisle at gcc dot gnu dot
                   |                            |org


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


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

* [Bug fortran/29563] Internal read loses data.
  2006-10-23 14:08 [Bug fortran/29563] New: Internal read loses data refson dot temp at ntlworld dot com
  2006-10-23 15:54 ` [Bug fortran/29563] " pault at gcc dot gnu dot org
@ 2006-10-24  2:12 ` jvdelisle at gcc dot gnu dot org
  2006-10-25  5:17 ` jvdelisle at gcc dot gnu dot org
                   ` (12 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2006-10-24  2:12 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from jvdelisle at gcc dot gnu dot org  2006-10-24 02:12 -------
I will have to investigate.  If you initialize the array tmpbox to something
other than 0 you will see that the list read is not reading the 9th value at
all.


-- 

jvdelisle at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |jvdelisle at gcc dot gnu dot
                   |dot org                     |org
             Status|UNCONFIRMED                 |ASSIGNED
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2006-10-24 02:12:14
               date|                            |


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


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

* [Bug fortran/29563] Internal read loses data.
  2006-10-23 14:08 [Bug fortran/29563] New: Internal read loses data refson dot temp at ntlworld dot com
  2006-10-23 15:54 ` [Bug fortran/29563] " pault at gcc dot gnu dot org
  2006-10-24  2:12 ` jvdelisle at gcc dot gnu dot org
@ 2006-10-25  5:17 ` jvdelisle at gcc dot gnu dot org
  2006-10-26  4:36 ` jvdelisle at gcc dot gnu dot org
                   ` (11 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2006-10-25  5:17 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from jvdelisle at gcc dot gnu dot org  2006-10-25 05:17 -------
I have isolated the problem in list_read.c and am working on a patch.  It will
be a day or two.


-- 


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


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

* [Bug fortran/29563] Internal read loses data.
  2006-10-23 14:08 [Bug fortran/29563] New: Internal read loses data refson dot temp at ntlworld dot com
                   ` (2 preceding siblings ...)
  2006-10-25  5:17 ` jvdelisle at gcc dot gnu dot org
@ 2006-10-26  4:36 ` jvdelisle at gcc dot gnu dot org
  2006-10-26  4:42 ` jvdelisle at gcc dot gnu dot org
                   ` (10 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2006-10-26  4:36 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from jvdelisle at gcc dot gnu dot org  2006-10-26 04:35 -------
Subject: Bug 29563

Author: jvdelisle
Date: Thu Oct 26 04:35:45 2006
New Revision: 118059

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=118059
Log:
2006-10-25  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

        PR libgfortran/29563
        * io/io.h (st_parameter_dt): Add new flag at_eof.
        * io/list_read.c (next_char): Set flag when EOF and return '\n' to
        signal EOR.  Check flag on next call and jump out.
        * io/unit.c (get_internal_unit): Initialize new flag.

Modified:
    trunk/libgfortran/ChangeLog
    trunk/libgfortran/io/io.h
    trunk/libgfortran/io/list_read.c
    trunk/libgfortran/io/unit.c


-- 


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


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

* [Bug fortran/29563] Internal read loses data.
  2006-10-23 14:08 [Bug fortran/29563] New: Internal read loses data refson dot temp at ntlworld dot com
                   ` (3 preceding siblings ...)
  2006-10-26  4:36 ` jvdelisle at gcc dot gnu dot org
@ 2006-10-26  4:42 ` jvdelisle at gcc dot gnu dot org
  2006-10-26  7:17 ` jvdelisle at gcc dot gnu dot org
                   ` (9 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2006-10-26  4:42 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from jvdelisle at gcc dot gnu dot org  2006-10-26 04:42 -------
Subject: Bug 29563

Author: jvdelisle
Date: Thu Oct 26 04:41:55 2006
New Revision: 118060

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=118060
Log:
2006-10-26  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

        PR libgfortran/29563
        * gfortran.dg/arrayio_9.f90: New test.

Added:
    trunk/gcc/testsuite/gfortran.dg/arrayio_9.f90
Modified:
    trunk/gcc/testsuite/ChangeLog


-- 


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


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

* [Bug fortran/29563] Internal read loses data.
  2006-10-23 14:08 [Bug fortran/29563] New: Internal read loses data refson dot temp at ntlworld dot com
                   ` (4 preceding siblings ...)
  2006-10-26  4:42 ` jvdelisle at gcc dot gnu dot org
@ 2006-10-26  7:17 ` jvdelisle at gcc dot gnu dot org
  2006-10-26  7:20 ` jvdelisle at gcc dot gnu dot org
                   ` (8 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2006-10-26  7:17 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from jvdelisle at gcc dot gnu dot org  2006-10-26 07:17 -------
Subject: Bug 29563

Author: jvdelisle
Date: Thu Oct 26 07:17:21 2006
New Revision: 118063

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=118063
Log:
2006-10-26  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

        PR libgfortran/29563
        * io/list_read.c (next_char): Fix an error in previous commit.

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


-- 


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


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

* [Bug fortran/29563] Internal read loses data.
  2006-10-23 14:08 [Bug fortran/29563] New: Internal read loses data refson dot temp at ntlworld dot com
                   ` (5 preceding siblings ...)
  2006-10-26  7:17 ` jvdelisle at gcc dot gnu dot org
@ 2006-10-26  7:20 ` jvdelisle at gcc dot gnu dot org
  2006-10-26  7:23 ` jvdelisle at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2006-10-26  7:20 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from jvdelisle at gcc dot gnu dot org  2006-10-26 07:19 -------
Subject: Bug 29563

Author: jvdelisle
Date: Thu Oct 26 07:19:49 2006
New Revision: 118064

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=118064
Log:
2006-10-26  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

        PR libgfortran/29563
        * gfortran.dg/arrayio_9.f90: Update test.
        * gfortran.dg/arrayio_19.f90: New test.

Added:
    trunk/gcc/testsuite/gfortran.dg/arrayio_10.f90
Modified:
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/gfortran.dg/arrayio_9.f90


-- 


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


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

* [Bug fortran/29563] Internal read loses data.
  2006-10-23 14:08 [Bug fortran/29563] New: Internal read loses data refson dot temp at ntlworld dot com
                   ` (6 preceding siblings ...)
  2006-10-26  7:20 ` jvdelisle at gcc dot gnu dot org
@ 2006-10-26  7:23 ` jvdelisle at gcc dot gnu dot org
  2006-10-27  1:04 ` jvdelisle at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2006-10-26  7:23 UTC (permalink / raw)
  To: gcc-bugs



-- 

jvdelisle at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |4.2.0


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


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

* [Bug fortran/29563] Internal read loses data.
  2006-10-23 14:08 [Bug fortran/29563] New: Internal read loses data refson dot temp at ntlworld dot com
                   ` (7 preceding siblings ...)
  2006-10-26  7:23 ` jvdelisle at gcc dot gnu dot org
@ 2006-10-27  1:04 ` jvdelisle at gcc dot gnu dot org
  2006-10-27  2:04 ` jvdelisle at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2006-10-27  1:04 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from jvdelisle at gcc dot gnu dot org  2006-10-27 01:04 -------
Subject: Bug 29563

Author: jvdelisle
Date: Fri Oct 27 01:04:02 2006
New Revision: 118079

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=118079
Log:
2006-10-26  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

        PR libgfortran/29563
        * io/io.h (st_parameter_dt): Add new flag at_eof.
        * io/list_read.c (next_char): Set flag when EOF and return '\n' to
        signal EOR.  Check flag on next call and jump out.
        * io/unit.c (get_internal_unit): Initialize new flag.

Modified:
    branches/gcc-4_2-branch/libgfortran/ChangeLog
    branches/gcc-4_2-branch/libgfortran/io/io.h
    branches/gcc-4_2-branch/libgfortran/io/list_read.c
    branches/gcc-4_2-branch/libgfortran/io/unit.c


-- 


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


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

* [Bug fortran/29563] Internal read loses data.
  2006-10-23 14:08 [Bug fortran/29563] New: Internal read loses data refson dot temp at ntlworld dot com
                   ` (8 preceding siblings ...)
  2006-10-27  1:04 ` jvdelisle at gcc dot gnu dot org
@ 2006-10-27  2:04 ` jvdelisle at gcc dot gnu dot org
  2006-10-27  2:08 ` jvdelisle at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2006-10-27  2:04 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from jvdelisle at gcc dot gnu dot org  2006-10-27 02:03 -------
Subject: Bug 29563

Author: jvdelisle
Date: Fri Oct 27 02:03:34 2006
New Revision: 118080

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=118080
Log:
2006-10-26  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

        PR libgfortran/29563
        * gfortran.dg/arrayio_9.f90: New test.
        * gfortran.dg/arrayio_19.f90: New test.

Added:
    branches/gcc-4_2-branch/gcc/testsuite/gfortran.dg/arrayio_10.f90
    branches/gcc-4_2-branch/gcc/testsuite/gfortran.dg/arrayio_9.f90
Modified:
    branches/gcc-4_2-branch/gcc/testsuite/ChangeLog


-- 


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


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

* [Bug fortran/29563] Internal read loses data.
  2006-10-23 14:08 [Bug fortran/29563] New: Internal read loses data refson dot temp at ntlworld dot com
                   ` (9 preceding siblings ...)
  2006-10-27  2:04 ` jvdelisle at gcc dot gnu dot org
@ 2006-10-27  2:08 ` jvdelisle at gcc dot gnu dot org
  2006-10-27 20:50 ` jvdelisle at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2006-10-27  2:08 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #10 from jvdelisle at gcc dot gnu dot org  2006-10-27 02:08 -------
Fixed on 4.2 and 4.3


-- 

jvdelisle at gcc dot gnu dot org changed:

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


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


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

* [Bug fortran/29563] Internal read loses data.
  2006-10-23 14:08 [Bug fortran/29563] New: Internal read loses data refson dot temp at ntlworld dot com
                   ` (10 preceding siblings ...)
  2006-10-27  2:08 ` jvdelisle at gcc dot gnu dot org
@ 2006-10-27 20:50 ` jvdelisle at gcc dot gnu dot org
  2006-10-27 20:57 ` jvdelisle at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2006-10-27 20:50 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #11 from jvdelisle at gcc dot gnu dot org  2006-10-27 20:50 -------
Subject: Bug 29563

Author: jvdelisle
Date: Fri Oct 27 20:50:15 2006
New Revision: 118085

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=118085
Log:
2006-10-27  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

        PR libgfortran/29563
        * gfortran.dg/error_recovery_2.f90: New test.

Added:
    trunk/gcc/testsuite/gfortran.dg/error_recovery_2.f90
Modified:
    trunk/gcc/testsuite/ChangeLog


-- 


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


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

* [Bug fortran/29563] Internal read loses data.
  2006-10-23 14:08 [Bug fortran/29563] New: Internal read loses data refson dot temp at ntlworld dot com
                   ` (11 preceding siblings ...)
  2006-10-27 20:50 ` jvdelisle at gcc dot gnu dot org
@ 2006-10-27 20:57 ` jvdelisle at gcc dot gnu dot org
  2006-10-27 21:41 ` jvdelisle at gcc dot gnu dot org
  2006-10-27 21:42 ` jvdelisle at gcc dot gnu dot org
  14 siblings, 0 replies; 16+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2006-10-27 20:57 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #12 from jvdelisle at gcc dot gnu dot org  2006-10-27 20:57 -------
Ignore comment 11.  Had the wrong PR number in ChangeLog entry when committing.


-- 


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


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

* [Bug fortran/29563] Internal read loses data.
  2006-10-23 14:08 [Bug fortran/29563] New: Internal read loses data refson dot temp at ntlworld dot com
                   ` (12 preceding siblings ...)
  2006-10-27 20:57 ` jvdelisle at gcc dot gnu dot org
@ 2006-10-27 21:41 ` jvdelisle at gcc dot gnu dot org
  2006-10-27 21:42 ` jvdelisle at gcc dot gnu dot org
  14 siblings, 0 replies; 16+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2006-10-27 21:41 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #13 from jvdelisle at gcc dot gnu dot org  2006-10-27 21:41 -------
Subject: Bug 29563

Author: jvdelisle
Date: Fri Oct 27 21:40:54 2006
New Revision: 118087

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=118087
Log:
2006-10-27  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

        PR libgfortran/29563
        * io/io.h (st_parameter_dt): Add new flag at_eof.
        * io/list_read.c (next_char): Set flag when EOF and return '\n' to
        signal EOR.  Check flag on next call and jump out.
        * io/unit.c (get_internal_unit): Initialize new flag.

Modified:
    branches/gcc-4_1-branch/libgfortran/ChangeLog
    branches/gcc-4_1-branch/libgfortran/io/io.h
    branches/gcc-4_1-branch/libgfortran/io/list_read.c
    branches/gcc-4_1-branch/libgfortran/io/unit.c


-- 


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


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

* [Bug fortran/29563] Internal read loses data.
  2006-10-23 14:08 [Bug fortran/29563] New: Internal read loses data refson dot temp at ntlworld dot com
                   ` (13 preceding siblings ...)
  2006-10-27 21:41 ` jvdelisle at gcc dot gnu dot org
@ 2006-10-27 21:42 ` jvdelisle at gcc dot gnu dot org
  14 siblings, 0 replies; 16+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2006-10-27 21:42 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #14 from jvdelisle at gcc dot gnu dot org  2006-10-27 21:42 -------
Subject: Bug 29563

Author: jvdelisle
Date: Fri Oct 27 21:42:40 2006
New Revision: 118088

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=118088
Log:
2006-10-27  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

        PR libgfortran/29563
        * gfortran.dg/arrayio_9.f90: New test.
        * gfortran.dg/arrayio_19.f90: New test.

Added:
    branches/gcc-4_1-branch/gcc/testsuite/gfortran.dg/arrayio_10.f90
    branches/gcc-4_1-branch/gcc/testsuite/gfortran.dg/arrayio_9.f90
Modified:
    branches/gcc-4_1-branch/gcc/testsuite/ChangeLog


-- 


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


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

end of thread, other threads:[~2006-10-27 21:42 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-10-23 14:08 [Bug fortran/29563] New: Internal read loses data refson dot temp at ntlworld dot com
2006-10-23 15:54 ` [Bug fortran/29563] " pault at gcc dot gnu dot org
2006-10-24  2:12 ` jvdelisle at gcc dot gnu dot org
2006-10-25  5:17 ` jvdelisle at gcc dot gnu dot org
2006-10-26  4:36 ` jvdelisle at gcc dot gnu dot org
2006-10-26  4:42 ` jvdelisle at gcc dot gnu dot org
2006-10-26  7:17 ` jvdelisle at gcc dot gnu dot org
2006-10-26  7:20 ` jvdelisle at gcc dot gnu dot org
2006-10-26  7:23 ` jvdelisle at gcc dot gnu dot org
2006-10-27  1:04 ` jvdelisle at gcc dot gnu dot org
2006-10-27  2:04 ` jvdelisle at gcc dot gnu dot org
2006-10-27  2:08 ` jvdelisle at gcc dot gnu dot org
2006-10-27 20:50 ` jvdelisle at gcc dot gnu dot org
2006-10-27 20:57 ` jvdelisle at gcc dot gnu dot org
2006-10-27 21:41 ` jvdelisle at gcc dot gnu dot org
2006-10-27 21:42 ` jvdelisle 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).