public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/10635] [3.3/3.4 regression] ICE (segfault) when dereferencing an incomplete type casted from a void pointer
       [not found] <20030506033601.10635.shea.williams@colorado.edu>
@ 2003-06-02 11:34 ` reichelt@gcc.gnu.org
  2003-06-08 19:02 ` pinskia@physics.uc.edu
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 9+ messages in thread
From: reichelt@gcc.gnu.org @ 2003-06-02 11:34 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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


reichelt@gcc.gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Last reconfirmed|0000-00-00 00:00:00         |2003-06-02 11:34:50
               date|                            |


------- Additional Comments From reichelt@gcc.gnu.org  2003-06-02 11:34 -------
Here's a shorter testcase that ICE's since gcc 3.0:

-----------------------------------------------
struct A;

void foo(A);

void bar(A* p)
{
    foo((A) *p);
}
-----------------------------------------------




------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


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

* [Bug c++/10635] [3.3/3.4 regression] ICE (segfault) when dereferencing an incomplete type casted from a void pointer
       [not found] <20030506033601.10635.shea.williams@colorado.edu>
  2003-06-02 11:34 ` [Bug c++/10635] [3.3/3.4 regression] ICE (segfault) when dereferencing an incomplete type casted from a void pointer reichelt@gcc.gnu.org
@ 2003-06-08 19:02 ` pinskia@physics.uc.edu
  2003-06-12 17:21 ` cvs-commit@gcc.gnu.org
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 9+ messages in thread
From: pinskia@physics.uc.edu @ 2003-06-08 19:02 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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


pinskia@physics.uc.edu changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |3.3.1


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

* [Bug c++/10635] [3.3/3.4 regression] ICE (segfault) when dereferencing an incomplete type casted from a void pointer
       [not found] <20030506033601.10635.shea.williams@colorado.edu>
                   ` (2 preceding siblings ...)
  2003-06-12 17:21 ` cvs-commit@gcc.gnu.org
@ 2003-06-12 17:21 ` cvs-commit@gcc.gnu.org
  2003-06-12 17:22 ` cvs-commit@gcc.gnu.org
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 9+ messages in thread
From: cvs-commit@gcc.gnu.org @ 2003-06-12 17:21 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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



------- Additional Comments From cvs-commit@gcc.gnu.org  2003-06-12 17:21 -------
Subject: Bug 10635

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	mmitchel@gcc.gnu.org	2003-06-12 17:21:40

Modified files:
	gcc/testsuite  : ChangeLog 
	gcc/cp         : ChangeLog typeck.c 
Added files:
	gcc/testsuite/g++.dg/expr: cast1.C 

Log message:
	PR c++/10635
	* typeck.c (build_c_cast): Check that the destination type is
	complete.
	
	PR c++/10635
	* g++.dg/expr/cast1.C: New test.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&r1=1.2763&r2=1.2764
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/expr/cast1.C.diff?cvsroot=gcc&r1=NONE&r2=1.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/ChangeLog.diff?cvsroot=gcc&r1=1.3415&r2=1.3416
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/typeck.c.diff?cvsroot=gcc&r1=1.463&r2=1.464


------- Additional Comments From cvs-commit@gcc.gnu.org  2003-06-12 17:21 -------
Subject: Bug 10635

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	mmitchel@gcc.gnu.org	2003-06-12 17:21:40

Modified files:
	gcc/testsuite  : ChangeLog 
	gcc/cp         : ChangeLog typeck.c 
Added files:
	gcc/testsuite/g++.dg/expr: cast1.C 

Log message:
	PR c++/10635
	* typeck.c (build_c_cast): Check that the destination type is
	complete.
	
	PR c++/10635
	* g++.dg/expr/cast1.C: New test.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&r1=1.2763&r2=1.2764
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/expr/cast1.C.diff?cvsroot=gcc&r1=NONE&r2=1.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/ChangeLog.diff?cvsroot=gcc&r1=1.3415&r2=1.3416
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/typeck.c.diff?cvsroot=gcc&r1=1.463&r2=1.464


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

* [Bug c++/10635] [3.3/3.4 regression] ICE (segfault) when dereferencing an incomplete type casted from a void pointer
       [not found] <20030506033601.10635.shea.williams@colorado.edu>
  2003-06-02 11:34 ` [Bug c++/10635] [3.3/3.4 regression] ICE (segfault) when dereferencing an incomplete type casted from a void pointer reichelt@gcc.gnu.org
  2003-06-08 19:02 ` pinskia@physics.uc.edu
@ 2003-06-12 17:21 ` cvs-commit@gcc.gnu.org
  2003-06-12 17:21 ` cvs-commit@gcc.gnu.org
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 9+ messages in thread
From: cvs-commit@gcc.gnu.org @ 2003-06-12 17:21 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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



------- Additional Comments From cvs-commit@gcc.gnu.org  2003-06-12 17:21 -------
Subject: Bug 10635

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	mmitchel@gcc.gnu.org	2003-06-12 17:21:40

Modified files:
	gcc/testsuite  : ChangeLog 
	gcc/cp         : ChangeLog typeck.c 
Added files:
	gcc/testsuite/g++.dg/expr: cast1.C 

Log message:
	PR c++/10635
	* typeck.c (build_c_cast): Check that the destination type is
	complete.
	
	PR c++/10635
	* g++.dg/expr/cast1.C: New test.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&r1=1.2763&r2=1.2764
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/expr/cast1.C.diff?cvsroot=gcc&r1=NONE&r2=1.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/ChangeLog.diff?cvsroot=gcc&r1=1.3415&r2=1.3416
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/typeck.c.diff?cvsroot=gcc&r1=1.463&r2=1.464


------- Additional Comments From cvs-commit@gcc.gnu.org  2003-06-12 17:21 -------
Subject: Bug 10635

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	mmitchel@gcc.gnu.org	2003-06-12 17:21:40

Modified files:
	gcc/testsuite  : ChangeLog 
	gcc/cp         : ChangeLog typeck.c 
Added files:
	gcc/testsuite/g++.dg/expr: cast1.C 

Log message:
	PR c++/10635
	* typeck.c (build_c_cast): Check that the destination type is
	complete.
	
	PR c++/10635
	* g++.dg/expr/cast1.C: New test.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&r1=1.2763&r2=1.2764
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/expr/cast1.C.diff?cvsroot=gcc&r1=NONE&r2=1.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/ChangeLog.diff?cvsroot=gcc&r1=1.3415&r2=1.3416
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/typeck.c.diff?cvsroot=gcc&r1=1.463&r2=1.464


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

* [Bug c++/10635] [3.3/3.4 regression] ICE (segfault) when dereferencing an incomplete type casted from a void pointer
       [not found] <20030506033601.10635.shea.williams@colorado.edu>
                   ` (4 preceding siblings ...)
  2003-06-12 17:22 ` cvs-commit@gcc.gnu.org
@ 2003-06-12 17:22 ` cvs-commit@gcc.gnu.org
  2003-06-12 17:24 ` cvs-commit@gcc.gnu.org
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 9+ messages in thread
From: cvs-commit@gcc.gnu.org @ 2003-06-12 17:22 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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



------- Additional Comments From cvs-commit@gcc.gnu.org  2003-06-12 17:22 -------
Subject: Bug 10635

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	gcc-3_3-branch
Changes by:	mmitchel@gcc.gnu.org	2003-06-12 17:22:30

Modified files:
	gcc/cp         : Make-lang.in mangle.c typeck.c 
Added files:
	gcc/testsuite/g++.dg/expr: cast1.C 

Log message:
	PR c++/10635
	* typeck.c (build_c_cast): Check that the destination type is
	complete.
	
	PR c++/10635
	* g++.dg/expr/cast1.C: New test.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/expr/cast1.C.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=NONE&r2=1.1.2.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/Make-lang.in.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.125.4.3&r2=1.125.4.4
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/mangle.c.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.63.2.2&r2=1.63.2.3
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/typeck.c.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.436.2.7&r2=1.436.2.8


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

* [Bug c++/10635] [3.3/3.4 regression] ICE (segfault) when dereferencing an incomplete type casted from a void pointer
       [not found] <20030506033601.10635.shea.williams@colorado.edu>
                   ` (3 preceding siblings ...)
  2003-06-12 17:21 ` cvs-commit@gcc.gnu.org
@ 2003-06-12 17:22 ` cvs-commit@gcc.gnu.org
  2003-06-12 17:22 ` cvs-commit@gcc.gnu.org
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 9+ messages in thread
From: cvs-commit@gcc.gnu.org @ 2003-06-12 17:22 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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



------- Additional Comments From cvs-commit@gcc.gnu.org  2003-06-12 17:22 -------
Subject: Bug 10635

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	gcc-3_3-branch
Changes by:	mmitchel@gcc.gnu.org	2003-06-12 17:22:30

Modified files:
	gcc/cp         : Make-lang.in mangle.c typeck.c 
Added files:
	gcc/testsuite/g++.dg/expr: cast1.C 

Log message:
	PR c++/10635
	* typeck.c (build_c_cast): Check that the destination type is
	complete.
	
	PR c++/10635
	* g++.dg/expr/cast1.C: New test.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/expr/cast1.C.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=NONE&r2=1.1.2.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/Make-lang.in.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.125.4.3&r2=1.125.4.4
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/mangle.c.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.63.2.2&r2=1.63.2.3
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/typeck.c.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.436.2.7&r2=1.436.2.8


------- Additional Comments From cvs-commit@gcc.gnu.org  2003-06-12 17:22 -------
Subject: Bug 10635

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	gcc-3_3-branch
Changes by:	mmitchel@gcc.gnu.org	2003-06-12 17:22:30

Modified files:
	gcc/cp         : Make-lang.in mangle.c typeck.c 
Added files:
	gcc/testsuite/g++.dg/expr: cast1.C 

Log message:
	PR c++/10635
	* typeck.c (build_c_cast): Check that the destination type is
	complete.
	
	PR c++/10635
	* g++.dg/expr/cast1.C: New test.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/expr/cast1.C.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=NONE&r2=1.1.2.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/Make-lang.in.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.125.4.3&r2=1.125.4.4
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/mangle.c.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.63.2.2&r2=1.63.2.3
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/typeck.c.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.436.2.7&r2=1.436.2.8


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

* [Bug c++/10635] [3.3/3.4 regression] ICE (segfault) when dereferencing an incomplete type casted from a void pointer
       [not found] <20030506033601.10635.shea.williams@colorado.edu>
                   ` (5 preceding siblings ...)
  2003-06-12 17:22 ` cvs-commit@gcc.gnu.org
@ 2003-06-12 17:24 ` cvs-commit@gcc.gnu.org
  2003-06-12 17:24 ` cvs-commit@gcc.gnu.org
  2003-06-12 17:28 ` mmitchel@gcc.gnu.org
  8 siblings, 0 replies; 9+ messages in thread
From: cvs-commit@gcc.gnu.org @ 2003-06-12 17:24 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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



------- Additional Comments From cvs-commit@gcc.gnu.org  2003-06-12 17:24 -------
Subject: Bug 10635

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	gcc-3_3-branch
Changes by:	mmitchel@gcc.gnu.org	2003-06-12 17:24:07

Modified files:
	gcc/cp         : ChangeLog 
	gcc/testsuite  : ChangeLog 

Log message:
	PR c++/10635
	* typeck.c (build_c_cast): Check that the destination type is
	complete.
	
	PR c++/10635
	* g++.dg/expr/cast1.C: New test.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.3076.2.145&r2=1.3076.2.146
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.2261.2.184&r2=1.2261.2.185


------- Additional Comments From cvs-commit@gcc.gnu.org  2003-06-12 17:24 -------
Subject: Bug 10635

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	gcc-3_3-branch
Changes by:	mmitchel@gcc.gnu.org	2003-06-12 17:24:07

Modified files:
	gcc/cp         : ChangeLog 
	gcc/testsuite  : ChangeLog 

Log message:
	PR c++/10635
	* typeck.c (build_c_cast): Check that the destination type is
	complete.
	
	PR c++/10635
	* g++.dg/expr/cast1.C: New test.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.3076.2.145&r2=1.3076.2.146
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.2261.2.184&r2=1.2261.2.185


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

* [Bug c++/10635] [3.3/3.4 regression] ICE (segfault) when dereferencing an incomplete type casted from a void pointer
       [not found] <20030506033601.10635.shea.williams@colorado.edu>
                   ` (6 preceding siblings ...)
  2003-06-12 17:24 ` cvs-commit@gcc.gnu.org
@ 2003-06-12 17:24 ` cvs-commit@gcc.gnu.org
  2003-06-12 17:28 ` mmitchel@gcc.gnu.org
  8 siblings, 0 replies; 9+ messages in thread
From: cvs-commit@gcc.gnu.org @ 2003-06-12 17:24 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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



------- Additional Comments From cvs-commit@gcc.gnu.org  2003-06-12 17:24 -------
Subject: Bug 10635

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	gcc-3_3-branch
Changes by:	mmitchel@gcc.gnu.org	2003-06-12 17:24:07

Modified files:
	gcc/cp         : ChangeLog 
	gcc/testsuite  : ChangeLog 

Log message:
	PR c++/10635
	* typeck.c (build_c_cast): Check that the destination type is
	complete.
	
	PR c++/10635
	* g++.dg/expr/cast1.C: New test.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.3076.2.145&r2=1.3076.2.146
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.2261.2.184&r2=1.2261.2.185


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

* [Bug c++/10635] [3.3/3.4 regression] ICE (segfault) when dereferencing an incomplete type casted from a void pointer
       [not found] <20030506033601.10635.shea.williams@colorado.edu>
                   ` (7 preceding siblings ...)
  2003-06-12 17:24 ` cvs-commit@gcc.gnu.org
@ 2003-06-12 17:28 ` mmitchel@gcc.gnu.org
  8 siblings, 0 replies; 9+ messages in thread
From: mmitchel@gcc.gnu.org @ 2003-06-12 17:28 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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


mmitchel@gcc.gnu.org changed:

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


------- Additional Comments From mmitchel@gcc.gnu.org  2003-06-12 17:28 -------
Fixed with attached patch in GCC 3.3.1, GCC 3.4.


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

end of thread, other threads:[~2003-06-12 17:28 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20030506033601.10635.shea.williams@colorado.edu>
2003-06-02 11:34 ` [Bug c++/10635] [3.3/3.4 regression] ICE (segfault) when dereferencing an incomplete type casted from a void pointer reichelt@gcc.gnu.org
2003-06-08 19:02 ` pinskia@physics.uc.edu
2003-06-12 17:21 ` cvs-commit@gcc.gnu.org
2003-06-12 17:21 ` cvs-commit@gcc.gnu.org
2003-06-12 17:22 ` cvs-commit@gcc.gnu.org
2003-06-12 17:22 ` cvs-commit@gcc.gnu.org
2003-06-12 17:24 ` cvs-commit@gcc.gnu.org
2003-06-12 17:24 ` cvs-commit@gcc.gnu.org
2003-06-12 17:28 ` mmitchel@gcc.gnu.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).