This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/25010] New: [4.1/4.2 regression] Segmentation fault (infinite recursion in cgraph_clone_inlined_nodes)
- From: "belyshev at depni dot sinp dot msu dot ru" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 24 Nov 2005 02:41:00 -0000
- Subject: [Bug c++/25010] New: [4.1/4.2 regression] Segmentation fault (infinite recursion in cgraph_clone_inlined_nodes)
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
This bug looks much like 24093 except that it fails on 4.1/4.2
Originally reported by Alexey Maximov <amax@mail.ru>
#pragma interface
struct T
{
T *p;
void baz ()
{
p->baz ();
}
};
void foo (T *p)
{
p->baz ();
}
--
Summary: [4.1/4.2 regression] Segmentation fault (infinite
recursion in cgraph_clone_inlined_nodes)
Product: gcc
Version: 4.1.0
Status: UNCONFIRMED
Keywords: ice-on-valid-code
Severity: normal
Priority: P3
Component: c++
AssignedTo: unassigned at gcc dot gnu dot org
ReportedBy: belyshev at depni dot sinp dot msu dot ru
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25010