public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
* Re: c++/5572: Internal compiler error in `const_hash', at varasm. c:2373
@ 2002-02-04 11:07 Andrew Pinski
  0 siblings, 0 replies; 2+ messages in thread
From: Andrew Pinski @ 2002-02-04 11:07 UTC (permalink / raw)
  To: nobody; +Cc: gcc-prs

The following reply was made to PR c++/5572; it has been noted by GNATS.

From: Andrew Pinski <pinskia@physics.uc.edu>
To: Sergey Kuznetsov <sergeyk@typhoon.spb.ru>
Cc: "'rodrigc@gcc.gnu.org'" <rodrigc@gcc.gnu.org>,
   "'gcc-bugs@gcc.gnu.org'" <gcc-bugs@gcc.gnu.org>,
   "'gcc-prs@gcc.gnu.org'" <gcc-prs@gcc.gnu.org>,
   "'nobody@gcc.gnu.org'" <nobody@gcc.gnu.org>,
   "'gcc-gnats@gcc.gnu.org'" <gcc-gnats@gcc.gnu.org>
Subject: Re: c++/5572: Internal compiler error in `const_hash', at varasm. c:2373
Date: Mon, 4 Feb 2002 12:20:02 -0500

 It is fixed in at least g++ version 3.1 20020202 (experimental) and in 
 3.0.4 20011231 (prerelease).
 Thanks,
 Andrew Pinski
 
 
 On Monday, February 4, 2002, at 12:07 , Sergey Kuznetsov wrote:
 
 >
 >
 > -----Original Message-----
 > From: rodrigc@gcc.gnu.org [mailto:rodrigc@gcc.gnu.org]
 > Sent: Monday, February 04, 2002 8:05 PM
 > To: gcc-bugs@gcc.gnu.org; gcc-prs@gcc.gnu.org; nobody@gcc.gnu.org;
 > sergeyk@typhoon.spb.ru
 > Subject: Re: c++/5572: Internal compiler error in `const_hash', at
 > varasm.c:2373
 >
 >
 > Synopsis: Internal compiler error in `const_hash', at varasm.c:2373
 >
 > State-Changed-From-To: open->feedback
 > State-Changed-By: rodrigc
 > State-Changed-When: Mon Feb  4 09:05:28 2002
 > State-Changed-Why:
 >     Your report did not contain an attachment.  Could
 >     you send it?
 >
 > http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-
 > trail&database=gcc&p
 > r=5572
 >
 >
 


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

* RE: c++/5572: Internal compiler error in `const_hash', at varasm. c:2373
@ 2002-02-04 11:07 Sergey Kuznetsov
  0 siblings, 0 replies; 2+ messages in thread
From: Sergey Kuznetsov @ 2002-02-04 11:07 UTC (permalink / raw)
  To: nobody; +Cc: gcc-prs

The following reply was made to PR c++/5572; it has been noted by GNATS.

From: Sergey Kuznetsov <sergeyk@typhoon.spb.ru>
To: "'rodrigc@gcc.gnu.org'" <rodrigc@gcc.gnu.org>, 
	"'gcc-bugs@gcc.gnu.org'" <gcc-bugs@gcc.gnu.org>, "'gcc-prs@gcc.gnu.org'"
	 <gcc-prs@gcc.gnu.org>, "'nobody@gcc.gnu.org'" <nobody@gcc.gnu.org>, 
	Sergey Kuznetsov <sergeyk@typhoon.spb.ru>, "'gcc-gnats@gcc.gnu.org'"
	 <gcc-gnats@gcc.gnu.org>
Cc:  
Subject: RE: c++/5572: Internal compiler error in `const_hash', at varasm.
	c:2373
Date: Mon, 4 Feb 2002 20:07:43 +0300 

 This message is in MIME format. Since your mail reader does not understand
 this format, some or all of this message may not be legible.
 
 ------_=_NextPart_000_01C1AD9E.75FFC920
 Content-Type: text/plain;
 	charset="KOI8-R"
 
 
 
 -----Original Message-----
 From: rodrigc@gcc.gnu.org [mailto:rodrigc@gcc.gnu.org]
 Sent: Monday, February 04, 2002 8:05 PM
 To: gcc-bugs@gcc.gnu.org; gcc-prs@gcc.gnu.org; nobody@gcc.gnu.org;
 sergeyk@typhoon.spb.ru
 Subject: Re: c++/5572: Internal compiler error in `const_hash', at
 varasm.c:2373
 
 
 Synopsis: Internal compiler error in `const_hash', at varasm.c:2373
 
 State-Changed-From-To: open->feedback
 State-Changed-By: rodrigc
 State-Changed-When: Mon Feb  4 09:05:28 2002
 State-Changed-Why:
     Your report did not contain an attachment.  Could
     you send it?
 
 http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&database=gcc&p
 r=5572
 
 
 ------_=_NextPart_000_01C1AD9E.75FFC920
 Content-Type: application/octet-stream;
 	name="main.cpp"
 Content-Transfer-Encoding: quoted-printable
 Content-Disposition: attachment;
 	filename="main.cpp"
 
 #include <stdio.h>=0A=
 =0A=
 class TestClass=0A=
 {=0A=
 public:=0A=
  void Print(const char* szText);=0A=
 };=0A=
 =0A=
 void TestClass::Print(const char* szText)=0A=
 {=0A=
  try=0A=
   {=0A=
       printf(szText);=0A=
       //*(int*)NULL =3D 0;=0A=
       throw 1;=0A=
   }=0A=
   catch(...)=0A=
   {=0A=
      printf("Catch\n");=0A=
   }=0A=
  }=0A=
 =0A=
 //void (TestClass::*pFunc)(const char*) =3D NULL;=0A=
 int main()=0A=
 {=0A=
  TestClass tc;=0A=
  void (TestClass::*pFunc[])(const char*) =3D {&TestClass::Print, =
 &TestClass::Print, &TestClass::Print, =0A=
  NULL, NULL, NULL, NULL, NULL, NULL, NULL };=0A=
  =0A=
  tc.Print("Hello world!!!\n");=0A=
 }
 ------_=_NextPart_000_01C1AD9E.75FFC920--


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

end of thread, other threads:[~2002-02-04 19:07 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-02-04 11:07 c++/5572: Internal compiler error in `const_hash', at varasm. c:2373 Andrew Pinski
2002-02-04 11:07 Sergey Kuznetsov

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).