* cfgrtl.c (try_redirect_by_replacing_jump): Fix return value.

From-SVN: r82623
This commit is contained in:
Jeff Law 2004-06-04 09:01:49 -06:00 committed by Jeff Law
parent f698d2175a
commit 9cf84a3cf0
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2004-06-04 Jeff Law <law@redhat.com>
* cfgrtl.c (try_redirect_by_replacing_jump): Fix return value.
2004-06-04 Steven Bosscher <stevenb@suse.de>
* except.c (for_each_eh_region): New function.

View File

@ -678,7 +678,7 @@ try_redirect_by_replacing_jump (edge e, basic_block target, bool in_cfglayout)
if (flag_reorder_blocks_and_partition
&& find_reg_note (insn, REG_CROSSING_JUMP, NULL_RTX))
return false;
return NULL;
/* Verify that all targets will be TARGET. */
for (tmp = src->succ; tmp; tmp = tmp->succ_next)