This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug middle-end/18718] ICE: Segmentation fault in in schedule_region (rgn=0) at sched-rgn.c:2325
- From: "pinskia at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 29 Nov 2004 16:14:40 -0000
- Subject: [Bug middle-end/18718] ICE: Segmentation fault in in schedule_region (rgn=0) at sched-rgn.c:2325
- References: <20041129154628.18718.micis@gmx.de>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From pinskia at gcc dot gnu dot org 2004-11-29 16:14 -------
Reduced to:
typedef long unsigned int size_t;
struct ACEXML_SAXPrint_Handler
{
void print_indent ();
size_t indent_;
};
int f();
void
ACEXML_SAXPrint_Handler::print_indent (void)
{
for (size_t i = 0; i < this->indent_; ++i)
f ();
}
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18718