Commit 30439f29 by Jeffrey A Law Committed by Jeff Law

flow.c (record_active_eh_regions): Terminate loop after finding the last insn in…

flow.c (record_active_eh_regions): Terminate loop after finding the last insn in the last basic block.

        * flow.c (record_active_eh_regions): Terminate loop after finding
        the last insn in the last basic block.

From-SVN: r29587
parent d8530e26
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.
......
......@@ -1197,6 +1197,8 @@ record_active_eh_regions (f)
{
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);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment