This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug debug/16792] [4.0 regression] ICE in gen_subprogram_die, at dwarf2out.c:11267
- From: "janis187 at us dot ibm dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 4 Dec 2004 01:19:30 -0000
- Subject: [Bug debug/16792] [4.0 regression] ICE in gen_subprogram_die, at dwarf2out.c:11267
- References: <20040728010127.16792.pbrook@gcc.gnu.org>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From janis187 at us dot ibm dot com 2004-12-04 01:19 -------
Current mainline g++ ICEs in the same place (now dwarf2out.c:11210) when
compiling 252.eon with -g on powerpc64-unknown-linux-gnu with either -m32
or -m64. Here's a testcase extracted from the eon code:
double foo (double);
void bar (double a)
{
double foo (double);
double x = foo (a);
}
double foo (double a)
{
return 0.0;
}
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16792