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 tree-optimization/27590] [regression] ICE when compiling catalina.jar from tomcat 5.0.30



------- Comment #6 from aph at gcc dot gnu dot org  2006-05-15 11:25 -------
Failed in link_block during finish_eh_generation ():

/* Link block B to chain after AFTER.  */
void
link_block (basic_block b, basic_block after)
{
  b->next_bb = after->next_bb;
  b->prev_bb = after;
  after->next_bb = b;
  b->next_bb->prev_bb = b;
}

#0  link_block (b=0x2aaaaaef5680, 
    after=0x0)
    at /home/aph/gcc/trunk/gcc/cfg.c:144

AFTER is NULL, so there is inevitably a SEGV.


-- 

aph at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to fail|                            |4.1.0 4.2.0
      Known to work|                            |4.0.3


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27590


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