Commit a2877a09 by Jan Hubicka Committed by Jan Hubicka

* cfgrtl.c (verify_flow_info): Accept RESX as EH edge source.

From-SVN: r50363
parent fe477d8b
Wed Mar 6 19:08:03 CET 2002 Jan Hubicka <jh@suse.cz>
* cfgrtl.c (verify_flow_info): Accept RESX as EH edge source.
Wed Mar 6 18:14:43 CET 2002 Jan Hubicka <jh@suse.cz> Wed Mar 6 18:14:43 CET 2002 Jan Hubicka <jh@suse.cz>
* cfgcleanup.c (mentions_nonequal_regs): New function. * cfgcleanup.c (mentions_nonequal_regs): New function.
......
...@@ -1855,7 +1855,8 @@ verify_flow_info () ...@@ -1855,7 +1855,8 @@ verify_flow_info ()
edge_checksum[e->dest->index + 2] += (size_t) e; edge_checksum[e->dest->index + 2] += (size_t) e;
} }
if (n_eh && !find_reg_note (bb->end, REG_EH_REGION, NULL_RTX)) if (n_eh && GET_CODE (PATTERN (bb->end)) != RESX
&& !find_reg_note (bb->end, REG_EH_REGION, NULL_RTX))
{ {
error ("Missing REG_EH_REGION note in the end of bb %i", bb->index); error ("Missing REG_EH_REGION note in the end of bb %i", bb->index);
err = 1; err = 1;
......
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