This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug middle-end/17419] [4.0 Regression] Bootstrap ICE in stage2: verify_cgraph_node failed
- 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 Sep 2004 21:17:22 -0000
- Subject: [Bug middle-end/17419] [4.0 Regression] Bootstrap ICE in stage2: verify_cgraph_node failed
- References: <20040911163708.17419.mckelvey@maskull.com>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From reichelt at gcc dot gnu dot org 2004-09-18 21:17 -------
Still not fixed. The reduced testcase in comment #2 now compiles,
but the original testcase still crashes. Here's a reduced testcase to
demonstrate this:
============================
int foo0();
inline int foo1()
{
return 0;
}
inline void foo2()
{
foo0()+foo1();
}
inline void foo3()
{
foo2();
}
inline void foo4()
{
foo3();
}
============================
Compiling this with "gcc -O" I get
tree-ssa.i:21: error: Inlined_to pointer is wrong
foo1/20: (inline copy in foo3/18) 2 insns tree inlinable asm_written
called by: foo2/19 (inlined)
calls:
tree-ssa.i:21: internal compiler error: verify_cgraph_node failed.
Please submit a full bug report, [etc.]
--
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |REOPENED
Resolution|FIXED |
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17419