This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug debug/16035] [3.4/3.5 Regression] [non-unit-at-a-time] internal compiler error: in gen_subprogram_die, at dwarf2out.c:10798
- From: "reichelt 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 Jun 2004 23:54:44 -0000
- Subject: [Bug debug/16035] [3.4/3.5 Regression] [non-unit-at-a-time] internal compiler error: in gen_subprogram_die, at dwarf2out.c:10798
- References: <20040617144643.16035.Ralf.Wildenhues@gmx.de>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From reichelt at gcc dot gnu dot org 2004-06-18 23:54 -------
And here's something without inheritance:
=======================================================================
namespace N
{
void foo();
struct A
{
~A() { foo(); foo(); foo(); foo(); foo(); foo(); foo(); foo();
foo(); foo(); foo(); foo(); foo(); foo(); foo(); foo();
foo(); foo(); foo(); foo(); foo(); foo(); foo(); foo(); }
};
inline A bar()
{
A quus (const A&);
A a;
return quus(A());
}
A a=bar();
}
=======================================================================
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16035