public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
* Re: c++/2687
@ 2001-05-13  1:26 lerdsuwa
  0 siblings, 0 replies; 4+ messages in thread
From: lerdsuwa @ 2001-05-13  1:26 UTC (permalink / raw)
  To: nobody; +Cc: gcc-prs

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

From: lerdsuwa@gcc.gnu.org
To: gcc-gnats@gcc.gnu.org, nobody@gcc.gnu.org, yarivt@webmap.com
Cc:  
Subject: Re: c++/2687
Date: 13 May 2001 08:23:42 -0000

 Synopsis: GCC 2.95.2 Compiler internal error
 
 State-Changed-From-To: open->feedback
 State-Changed-By: lerdsuwa
 State-Changed-When: Sun May 13 01:23:42 2001
 State-Changed-Why:
     The testcase is missing from the bug report.  Please resubmit
     a preprocessed source.
 
 http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view&pr=2687&database=gcc


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

* Re: c++/2687
@ 2001-05-26  2:06 lerdsuwa
  0 siblings, 0 replies; 4+ messages in thread
From: lerdsuwa @ 2001-05-26  2:06 UTC (permalink / raw)
  To: nobody; +Cc: gcc-prs

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

From: lerdsuwa@gcc.gnu.org
To: gcc-gnats@gcc.gnu.org, nobody@gcc.gnu.org, yarivt@webmap.com
Cc:  
Subject: Re: c++/2687
Date: 26 May 2001 09:03:33 -0000

 Synopsis: GCC 2.95.2 Compiler internal error
 
 State-Changed-From-To: open->analyzed
 State-Changed-By: lerdsuwa
 State-Changed-When: Sat May 26 02:03:32 2001
 State-Changed-Why:
     Confirm as a bug.
 
 http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view&pr=2687&database=gcc


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

* Re: c++/2687
@ 2001-05-25  0:06 rodrigc
  0 siblings, 0 replies; 4+ messages in thread
From: rodrigc @ 2001-05-25  0:06 UTC (permalink / raw)
  To: nobody; +Cc: gcc-prs

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

From: rodrigc@gcc.gnu.org
To: gcc-gnats@gcc.gnu.org, lerdsuwa@gcc.gnu.org, rodrigc@gcc.gnu.org,
  nobody@gcc.gnu.org, yarivt@webmap.com
Cc:  
Subject: Re: c++/2687
Date: 25 May 2001 06:56:24 -0000

 Synopsis: GCC 2.95.2 Compiler internal error
 
 State-Changed-From-To: feedback->open
 State-Changed-By: rodrigc
 State-Changed-When: Thu May 24 23:56:24 2001
 State-Changed-Why:
     - attached sample code which causes Internal Compiler
       Error
     - ICE also caused under gcc version 3.0 20010507 (prerelease)gcc version 3.0 20010507 (prerelease)c version 3.0 20010507 (prerelease)
 
 http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view&pr=2687&database=gcc


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

* Re: c++/2687
@ 2001-05-13  4:46 Yariv Tal
  0 siblings, 0 replies; 4+ messages in thread
From: Yariv Tal @ 2001-05-13  4:46 UTC (permalink / raw)
  To: nobody; +Cc: gcc-prs

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

From: Yariv Tal <YarivT@webmap.com>
To: "'gcc-gnats@gcc.gnu.org'" <gcc-gnats@gcc.gnu.org>, 
	"'nobody@gcc.gnu.org'" <nobody@gcc.gnu.org>
Cc:  
Subject: Re: c++/2687
Date: Sun, 13 May 2001 14:41:40 +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_01C0DBA1.ADFBFCA3
 Content-Type: text/plain;
 	charset="iso-8859-1"
 
 // Here's the code that produces the internal error:
 #define NULL 0
 
 class CClass1a
 {
 protected:
   virtual void releaseObj(void)
   {
   }
 
 };
 
 class CClass2
 {
 public:
   CClass2(void);
 };
 
 
 class CClass1b : public CClass1a 
 {
 protected:
   virtual void releaseObj(void)
   {
     CClass1a::releaseObj();
   }
 }
 
 
 CClass2::CClass2()
 {
 }
 
 
 
  <<exp.cpp>> 
 
 
 ------_=_NextPart_000_01C0DBA1.ADFBFCA3
 Content-Type: application/octet-stream;
 	name="exp.cpp"
 Content-Transfer-Encoding: quoted-printable
 Content-Disposition: attachment;
 	filename="exp.cpp"
 
 #define NULL 0=0A=
 =0A=
 class CClass1a=0A=
 {=0A=
 protected:=0A=
   virtual void releaseObj(void)=0A=
   {=0A=
   }=0A=
 =0A=
 };=0A=
 =0A=
 class CClass2=0A=
 {=0A=
 public:=0A=
   CClass2(void);=0A=
 };=0A=
 =0A=
 =0A=
 class CClass1b : public CClass1a =0A=
 {=0A=
 protected:=0A=
   virtual void releaseObj(void)=0A=
   {=0A=
     CClass1a::releaseObj();=0A=
   }=0A=
 }=0A=
 =0A=
 =0A=
 CClass2::CClass2()=0A=
 {=0A=
 }=0A=
 
 ------_=_NextPart_000_01C0DBA1.ADFBFCA3--


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

end of thread, other threads:[~2001-05-26  2:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-05-13  1:26 c++/2687 lerdsuwa
2001-05-13  4:46 c++/2687 Yariv Tal
2001-05-25  0:06 c++/2687 rodrigc
2001-05-26  2:06 c++/2687 lerdsuwa

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