cfgcleanup.c (try_simplify_condjump): Call update_forwarder_flag after simplifying the jump.

* cfgcleanup.c (try_simplify_condjump): Call update_forwarder_flag
	after simplifying the jump.

From-SVN: r85200
This commit is contained in:
Richard Sandiford 2004-07-26 18:27:59 +00:00 committed by Richard Sandiford
parent 95899b3495
commit 261139ce14
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2004-07-26 Richard Sandiford <rsandifo@redhat.com>
* cfgcleanup.c (try_simplify_condjump): Call update_forwarder_flag
after simplifying the jump.
2004-06-26 Richard Henderson <rth@redhat.com>
* calls.c (combine_pending_stack_adjustment_and_call): Make

View File

@ -187,6 +187,7 @@ try_simplify_condjump (basic_block cbranch_block)
/* Delete the block with the unconditional jump, and clean up the mess. */
delete_basic_block (jump_block);
tidy_fallthru_edge (cbranch_jump_edge);
update_forwarder_flag (cbranch_block);
return true;
}