* flow.c (record_active_eh_regions): Terminate loop after finding
the last insn in the last basic block.
From-SVN: r29587
+Wed Sep 22 06:06:57 1999 Jeffrey A Law (law@cygnus.com)
+
+ * flow.c (record_active_eh_regions): Terminate loop after finding
+ the last insn in the last basic block.
+
Wed Sep 22 20:25:00 1999 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
* config/c4x/c4x.md: Delete parallel instruction peepholes.
{
bb->eh_end = (eh_list ? NOTE_EH_HANDLER (XEXP (eh_list, 0)) : -1);
i += 1;
+ if (i == n_basic_blocks)
+ break;
bb = BASIC_BLOCK (i);
}
}