This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/23947] [4.1 Regression] segv in reshape_init_r()
- From: "rguenth at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 18 Sep 2005 13:07:36 -0000
- Subject: [Bug c++/23947] [4.1 Regression] segv in reshape_init_r()
- References: <20050918123721.23947.marcus@jet.franken.de>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From rguenth at gcc dot gnu dot org 2005-09-18 13:07 -------
Confirmed.
Pretty short testcase again:
class DecodeException{};
class BerException{};
class BerDecodeException:public DecodeException,public BerException{};
class BerLengthException:public BerDecodeException{};
void f()
throw(BerLengthException){
}
--
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
Keywords| |ice-on-valid-code
Last reconfirmed|0000-00-00 00:00:00 |2005-09-18 13:07:33
date| |
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23947