Bug#516727: gcc segfaults on simple wrong c++ code

2009-02-23 Thread Martin Michlmayr
* Rutger ter Borg [2009-02-23 12:14]: > The current c++ compiler segfaults on the following simple code mistake, > where > a destructor doesn't have the same id as that the class. I don't get this bug with the current 4.3 from SVN, so this has either been fixed or has been introduced by a Debia

Bug#516727: gcc segfaults on simple wrong c++ code

2009-02-23 Thread Martin Michlmayr
* Rutger ter Borg [2009-02-23 12:14]: > Package: g++ (Debian 4.3.3-4) 4.3.3 > > The current c++ compiler segfaults on the following simple code mistake, > where > a destructor doesn't have the same id as that the class. Confirmed. Note that this didn't happen with 4.3.3-1 -- Martin Michlmayr

Processed: Re: Bug#516727: gcc segfaults on simple wrong c++ code

2009-02-23 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org: > reassign 516727 g++-4.3 Bug#516727: gcc segfaults on simple wrong c++ code Warning: Unknown package 'debian' Warning: Unknown package '4.3.3-4' Warning: Unknown package '4.3.3' Bug reassigned from package `g++ (d

Bug#516727: gcc segfaults on simple wrong c++ code

2009-02-23 Thread Rutger ter Borg
Package: g++ (Debian 4.3.3-4) 4.3.3 The current c++ compiler segfaults on the following simple code mistake, where a destructor doesn't have the same id as that the class. template< typename T > class some_class { some_class() {} // segfault ~some() {} // no segfault //