public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/23091] ICE in gfc_trans_auto_array_allocation
       [not found] <bug-23091-1492@http.gcc.gnu.org/bugzilla/>
@ 2005-12-22  4:43 ` pinskia at gcc dot gnu dot org
  2005-12-30  6:44 ` pinskia at gcc dot gnu dot org
                   ` (10 subsequent siblings)
  11 siblings, 0 replies; 15+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-12-22  4:43 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from pinskia at gcc dot gnu dot org  2005-12-22 04:43 -------
I see this with -fno-automatic in a benchmark.


-- 

pinskia at gcc dot gnu dot org changed:

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


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


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

* [Bug fortran/23091] ICE in gfc_trans_auto_array_allocation
       [not found] <bug-23091-1492@http.gcc.gnu.org/bugzilla/>
  2005-12-22  4:43 ` [Bug fortran/23091] ICE in gfc_trans_auto_array_allocation pinskia at gcc dot gnu dot org
@ 2005-12-30  6:44 ` pinskia at gcc dot gnu dot org
  2006-01-05 13:41 ` mimo2 at free dot fr
                   ` (9 subsequent siblings)
  11 siblings, 0 replies; 15+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-12-30  6:44 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from pinskia at gcc dot gnu dot org  2005-12-30 06:44 -------
*** Bug 25105 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jv244 at cam dot ac dot uk


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


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

* [Bug fortran/23091] ICE in gfc_trans_auto_array_allocation
       [not found] <bug-23091-1492@http.gcc.gnu.org/bugzilla/>
  2005-12-22  4:43 ` [Bug fortran/23091] ICE in gfc_trans_auto_array_allocation pinskia at gcc dot gnu dot org
  2005-12-30  6:44 ` pinskia at gcc dot gnu dot org
@ 2006-01-05 13:41 ` mimo2 at free dot fr
  2006-01-05 14:18 ` pinskia at gcc dot gnu dot org
                   ` (8 subsequent siblings)
  11 siblings, 0 replies; 15+ messages in thread
From: mimo2 at free dot fr @ 2006-01-05 13:41 UTC (permalink / raw)
  To: gcc-bugs

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 789 bytes --]



------- Comment #6 from mimo2 at free dot fr  2006-01-05 13:41 -------
same (?) bug on GNU Fortran 95 (GCC) 4.2.0 20060104 

program test
  call toto(4)
end
subroutine toto(n)
integer, intent(in) :: n
real :: tab(n)
  tab(1:n) = 4.
end

this code compiles when no option, but fails when -fno-automatic with
test.f90:6: erreur interne du compilateur: dans
gfc_trans_auto_array_allocation, à fortran/trans-array.c:3326

commenting the line tab(1:n) = 4. makes it to compile with -fno-automatic


-- 

mimo2 at free dot fr changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mimo2 at free dot fr


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



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

* [Bug fortran/23091] ICE in gfc_trans_auto_array_allocation
       [not found] <bug-23091-1492@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2006-01-05 13:41 ` mimo2 at free dot fr
@ 2006-01-05 14:18 ` pinskia at gcc dot gnu dot org
  2006-05-13 23:25 ` pinskia at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  11 siblings, 0 replies; 15+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-01-05 14:18 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from pinskia at gcc dot gnu dot org  2006-01-05 14:18 -------
(In reply to comment #6)
> same (?) bug on GNU Fortran 95 (GCC) 4.2.0 20060104 

Yes this is the same bug, we should not promote variable length (hopefully that
is the correct term) arrays to save/static (a C/GCC term).
And if it is explicitly we should reject it like IFC does:
fortcom: Error: t.f90, line 2: An automatic object must not appear in a SAVE
statement or be declared with the SAVE attribute.   [MYARRAY]
      Dimension myArray(n1)
................^
compilation aborted for t.f90 (code 1)


-- 


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



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

* [Bug fortran/23091] ICE in gfc_trans_auto_array_allocation
       [not found] <bug-23091-1492@http.gcc.gnu.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2006-01-05 14:18 ` pinskia at gcc dot gnu dot org
@ 2006-05-13 23:25 ` pinskia at gcc dot gnu dot org
  2006-06-06 14:09 ` paul dot richard dot thomas at cea dot fr
                   ` (6 subsequent siblings)
  11 siblings, 0 replies; 15+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-05-13 23:25 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from pinskia at gcc dot gnu dot org  2006-05-13 23:25 -------
*** Bug 27583 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |tobias dot burnus at physik
                   |                            |dot fu-berlin dot de


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


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

* [Bug fortran/23091] ICE in gfc_trans_auto_array_allocation
       [not found] <bug-23091-1492@http.gcc.gnu.org/bugzilla/>
                   ` (4 preceding siblings ...)
  2006-05-13 23:25 ` pinskia at gcc dot gnu dot org
@ 2006-06-06 14:09 ` paul dot richard dot thomas at cea dot fr
  2006-06-06 22:04 ` patchapp at dberlin dot org
                   ` (5 subsequent siblings)
  11 siblings, 0 replies; 15+ messages in thread
From: paul dot richard dot thomas at cea dot fr @ 2006-06-06 14:09 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from paul dot richard dot thomas at cea dot fr  2006-06-06 14:06 -------
Created an attachment (id=11608)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=11608&action=view)
Patch for this and PR27583

This needs cleaning up and a testcase writing but it is nearly there.

Paul 


-- 


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


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

* [Bug fortran/23091] ICE in gfc_trans_auto_array_allocation
       [not found] <bug-23091-1492@http.gcc.gnu.org/bugzilla/>
                   ` (5 preceding siblings ...)
  2006-06-06 14:09 ` paul dot richard dot thomas at cea dot fr
@ 2006-06-06 22:04 ` patchapp at dberlin dot org
  2006-06-07  7:46 ` pault at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  11 siblings, 0 replies; 15+ messages in thread
From: patchapp at dberlin dot org @ 2006-06-06 22:04 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #10 from patchapp at dberlin dot org  2006-06-06 22:00 -------
Subject: Bug number PR23091

A patch for this bug has been added to the patch tracker.
The mailing list url for the patch is
http://gcc.gnu.org/ml/gcc-patches/2006-06/msg00332.html


-- 


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


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

* [Bug fortran/23091] ICE in gfc_trans_auto_array_allocation
       [not found] <bug-23091-1492@http.gcc.gnu.org/bugzilla/>
                   ` (6 preceding siblings ...)
  2006-06-06 22:04 ` patchapp at dberlin dot org
@ 2006-06-07  7:46 ` pault at gcc dot gnu dot org
  2006-06-11 22:33 ` pault at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  11 siblings, 0 replies; 15+ messages in thread
From: pault at gcc dot gnu dot org @ 2006-06-07  7:46 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #11 from pault at gcc dot gnu dot org  2006-06-07 07:20 -------
Subject: Bug 23091

Author: pault
Date: Wed Jun  7 07:20:39 2006
New Revision: 114461

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=114461
Log:
2006-06-07  Paul Thomas  <pault@gcc.gnu.org>

        PR fortran/23091
        * resolve.c (resolve_fl_variable): Error if an automatic
        object has the SAVE attribute.

        PR fortran/24168
        * expr.c (simplify_intrinsic_op): Transfer the rank and
        the locus to the simplified expression.

        PR fortran/25090
        PR fortran/25058
        * gfortran.h : Add int entry_id to gfc_symbol.
        * resolve.c : Add static variables current_entry_id and
        specification_expr.
        (resolve_variable): During code resolution, check if a
        reference to a dummy variable in an executable expression
        is preceded by its appearance as a parameter in an entry.
        Likewise check its specification expressions.
        (resolve_code): Update current_entry_id on EXEC_ENTRY.
        (resolve_charlen, resolve_fl_variable): Set and reset
        specifiaction_expr.
        (is_non_constant_shape_array): Do not return on detection
        of a variable but continue to resolve all the expressions.
        (resolve_codes): set current_entry_id to an out of range
        value.

2006-06-07  Paul Thomas  <pault@gcc.gnu.org>

        PR fortran/23091
        * gfortran.dg/saved_automatic_1.f90: New test.

        PR fortran/24168
        * gfortran.dg/array_simplify_1.f90: New test.

        PR fortran/25090
        * gfortran.dg/entry_dummy_ref_1.f90: New test.

        PR fortran/25058
        * gfortran.dg/entry_dummy_ref_2.f90: New test.




Added:
    trunk/gcc/testsuite/gfortran.dg/array_simplify_1.f90
    trunk/gcc/testsuite/gfortran.dg/entry_dummy_ref_1.f90
    trunk/gcc/testsuite/gfortran.dg/entry_dummy_ref_2.f90
    trunk/gcc/testsuite/gfortran.dg/saved_automatic_1.f90
Modified:
    trunk/gcc/fortran/ChangeLog
    trunk/gcc/fortran/expr.c
    trunk/gcc/fortran/gfortran.h
    trunk/gcc/fortran/resolve.c
    trunk/gcc/testsuite/ChangeLog


-- 


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


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

* [Bug fortran/23091] ICE in gfc_trans_auto_array_allocation
       [not found] <bug-23091-1492@http.gcc.gnu.org/bugzilla/>
                   ` (7 preceding siblings ...)
  2006-06-07  7:46 ` pault at gcc dot gnu dot org
@ 2006-06-11 22:33 ` pault at gcc dot gnu dot org
  2006-06-11 22:36 ` pault at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  11 siblings, 0 replies; 15+ messages in thread
From: pault at gcc dot gnu dot org @ 2006-06-11 22:33 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #12 from pault at gcc dot gnu dot org  2006-06-11 22:32 -------
Subject: Bug 23091

Author: pault
Date: Sun Jun 11 22:32:26 2006
New Revision: 114551

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=114551
Log:
2006-06-12  Paul Thomas  <pault@gcc.gnu.org>

        PR fortran/24558
        PR fortran/20877
        PR fortran/25047
        * decl.c (get_proc_name): Add new argument to flag that a
        module function entry is being treated. If true, correct
        error condition, add symtree to module namespace and add
        a module procedure.
        (gfc_match_function_decl, gfc_match_entry,
        gfc_match_subroutine): Use the new argument in calls to
        get_proc_name.
        * resolve.c (resolve_entries): ENTRY symbol reference to
        to master entry namespace if a module function.
        * trans-decl.c (gfc_create_module_variable): Return if
        the symbol is an entry.

        PR fortran/23091
        * resolve.c (resolve_fl_variable): Error if an automatic
        object has the SAVE attribute.

        PR fortran/24168
        * expr.c (simplify_intrinsic_op): Transfer the rank and
        the locus to the simplified expression.

        PR fortran/25090
        PR fortran/25058
        * gfortran.h : Add int entry_id to gfc_symbol.
        * resolve.c : Add static variables current_entry_id and
        specification_expr.
        (resolve_variable): During code resolution, check if a
        reference to a dummy variable in an executable expression
        is preceded by its appearance as a parameter in an entry.
        Likewise check its specification expressions.
        (resolve_code): Update current_entry_id on EXEC_ENTRY.
        (resolve_charlen, resolve_fl_variable): Set and reset
        specifiaction_expr.
        (is_non_constant_shape_array): Do not return on detection
        of a variable but continue to resolve all the expressions.
        (resolve_codes): set current_entry_id to an out of range
        value.

2006-06-12  Paul Thomas  <pault@gcc.gnu.org>

        PR fortran/24558
        * gfortran.dg/entry_6.f90: New test.

        PR fortran/20877
        PR fortran/25047
        * gfortran.dg/entry_7.f90: New test.

        PR fortran/23091
        * gfortran.dg/saved_automatic_1.f90: New test.

        PR fortran/24168
        * gfortran.dg/array_simplify_1.f90: New test.

        PR fortran/25090
        * gfortran.dg/entry_dummy_ref_1.f90: New test.

        PR fortran/25058
        * gfortran.dg/entry_dummy_ref_2.f90: New test.

Added:
    branches/gcc-4_1-branch/gcc/testsuite/gfortran.dg/array_simplify_1.f90
    branches/gcc-4_1-branch/gcc/testsuite/gfortran.dg/entry_6.f90
    branches/gcc-4_1-branch/gcc/testsuite/gfortran.dg/entry_7.f90
    branches/gcc-4_1-branch/gcc/testsuite/gfortran.dg/entry_dummy_ref_1.f90
    branches/gcc-4_1-branch/gcc/testsuite/gfortran.dg/entry_dummy_ref_2.f90
    branches/gcc-4_1-branch/gcc/testsuite/gfortran.dg/saved_automatic_1.f90
Modified:
    branches/gcc-4_1-branch/gcc/fortran/ChangeLog
    branches/gcc-4_1-branch/gcc/fortran/decl.c
    branches/gcc-4_1-branch/gcc/fortran/expr.c
    branches/gcc-4_1-branch/gcc/fortran/gfortran.h
    branches/gcc-4_1-branch/gcc/fortran/resolve.c
    branches/gcc-4_1-branch/gcc/fortran/trans-decl.c
    branches/gcc-4_1-branch/gcc/testsuite/ChangeLog


-- 


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


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

* [Bug fortran/23091] ICE in gfc_trans_auto_array_allocation
       [not found] <bug-23091-1492@http.gcc.gnu.org/bugzilla/>
                   ` (8 preceding siblings ...)
  2006-06-11 22:33 ` pault at gcc dot gnu dot org
@ 2006-06-11 22:36 ` pault at gcc dot gnu dot org
  2006-06-20  4:14 ` pinskia at gcc dot gnu dot org
  2006-06-20  4:15 ` pinskia at gcc dot gnu dot org
  11 siblings, 0 replies; 15+ messages in thread
From: pault at gcc dot gnu dot org @ 2006-06-11 22:36 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #13 from pault at gcc dot gnu dot org  2006-06-11 22:36 -------
Cracked on trunk and 4.1.

Paul


-- 

pault at gcc dot gnu dot org changed:

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


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


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

* [Bug fortran/23091] ICE in gfc_trans_auto_array_allocation
       [not found] <bug-23091-1492@http.gcc.gnu.org/bugzilla/>
                   ` (9 preceding siblings ...)
  2006-06-11 22:36 ` pault at gcc dot gnu dot org
@ 2006-06-20  4:14 ` pinskia at gcc dot gnu dot org
  2006-06-20  4:15 ` pinskia at gcc dot gnu dot org
  11 siblings, 0 replies; 15+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-06-20  4:14 UTC (permalink / raw)
  To: gcc-bugs



-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |4.1.2


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


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

* [Bug fortran/23091] ICE in gfc_trans_auto_array_allocation
       [not found] <bug-23091-1492@http.gcc.gnu.org/bugzilla/>
                   ` (10 preceding siblings ...)
  2006-06-20  4:14 ` pinskia at gcc dot gnu dot org
@ 2006-06-20  4:15 ` pinskia at gcc dot gnu dot org
  11 siblings, 0 replies; 15+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-06-20  4:15 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #14 from pinskia at gcc dot gnu dot org  2006-06-20 04:13 -------
*** Bug 28091 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |3dw4rd at verizon dot net


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


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

* [Bug fortran/23091] ICE in gfc_trans_auto_array_allocation
  2005-07-27 12:23 [Bug fortran/23091] New: " valera dot veryazov at teokem dot lu dot se
  2005-07-27 12:50 ` [Bug fortran/23091] " reichelt at gcc dot gnu dot org
  2005-07-27 12:59 ` reichelt at gcc dot gnu dot org
@ 2005-07-27 13:00 ` reichelt at gcc dot gnu dot org
  2 siblings, 0 replies; 15+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2005-07-27 13:00 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From reichelt at gcc dot gnu dot org  2005-07-27 12:59 -------
Confirmed. The following still ICE's (4.0 branch and mainline)

==============================
      Subroutine My(n1)
      Dimension myArray(n1)
      Save myArray
      Call xxx(myArray)
      End
==============================

Paul, would you mind looking into this as it is related to PR21034
which was fixed by your patch?


-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |pbrook at gcc dot gnu dot
                   |                            |org, reichelt at gcc dot gnu
                   |                            |dot org
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
           Keywords|                            |ice-on-invalid-code,
                   |                            |monitored
   Last reconfirmed|0000-00-00 00:00:00         |2005-07-27 12:59:47
               date|                            |


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


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

* [Bug fortran/23091] ICE in gfc_trans_auto_array_allocation
  2005-07-27 12:23 [Bug fortran/23091] New: " valera dot veryazov at teokem dot lu dot se
  2005-07-27 12:50 ` [Bug fortran/23091] " reichelt at gcc dot gnu dot org
@ 2005-07-27 12:59 ` reichelt at gcc dot gnu dot org
  2005-07-27 13:00 ` reichelt at gcc dot gnu dot org
  2 siblings, 0 replies; 15+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2005-07-27 12:59 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From reichelt at gcc dot gnu dot org  2005-07-27 12:53 -------
Well, not qiote a duplicate: "Save myArray" still ICE's.
Reopening.


-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |UNCONFIRMED
         Resolution|DUPLICATE                   |


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


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

* [Bug fortran/23091] ICE in gfc_trans_auto_array_allocation
  2005-07-27 12:23 [Bug fortran/23091] New: " valera dot veryazov at teokem dot lu dot se
@ 2005-07-27 12:50 ` reichelt at gcc dot gnu dot org
  2005-07-27 12:59 ` reichelt at gcc dot gnu dot org
  2005-07-27 13:00 ` reichelt at gcc dot gnu dot org
  2 siblings, 0 replies; 15+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2005-07-27 12:50 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From reichelt at gcc dot gnu dot org  2005-07-27 12:50 -------
This is a duplicate of PR 21034 and already fixed for gcc 4.0.2.


*** This bug has been marked as a duplicate of 21034 ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |DUPLICATE


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


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

end of thread, other threads:[~2006-06-20  4:14 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-23091-1492@http.gcc.gnu.org/bugzilla/>
2005-12-22  4:43 ` [Bug fortran/23091] ICE in gfc_trans_auto_array_allocation pinskia at gcc dot gnu dot org
2005-12-30  6:44 ` pinskia at gcc dot gnu dot org
2006-01-05 13:41 ` mimo2 at free dot fr
2006-01-05 14:18 ` pinskia at gcc dot gnu dot org
2006-05-13 23:25 ` pinskia at gcc dot gnu dot org
2006-06-06 14:09 ` paul dot richard dot thomas at cea dot fr
2006-06-06 22:04 ` patchapp at dberlin dot org
2006-06-07  7:46 ` pault at gcc dot gnu dot org
2006-06-11 22:33 ` pault at gcc dot gnu dot org
2006-06-11 22:36 ` pault at gcc dot gnu dot org
2006-06-20  4:14 ` pinskia at gcc dot gnu dot org
2006-06-20  4:15 ` pinskia at gcc dot gnu dot org
2005-07-27 12:23 [Bug fortran/23091] New: " valera dot veryazov at teokem dot lu dot se
2005-07-27 12:50 ` [Bug fortran/23091] " reichelt at gcc dot gnu dot org
2005-07-27 12:59 ` reichelt at gcc dot gnu dot org
2005-07-27 13:00 ` reichelt 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).