This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug middle-end/18718] ICE: Segmentation fault in in schedule_region (rgn=0) at sched-rgn.c:2325


------- 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]