toplev.c (rest_of_handle_reorder_blocks): Fix pasto in previous commit.

* toplev.c (rest_of_handle_reorder_blocks): Fix pasto in previous
	commit.

From-SVN: r76035
This commit is contained in:
Jan Hubicka 2004-01-17 13:28:57 +01:00 committed by Jan Hubicka
parent f2e16e973b
commit 26c0473bc9
2 changed files with 6 additions and 3 deletions

View File

@ -1,5 +1,8 @@
2004-01-17 Jan Hubicka <jh@suse.cz>
* toplev.c (rest_of_handle_reorder_blocks): Fix pasto in previous
commit.
* toplev.c (HAVE_conditional_execution): Provide default.
(rest_of_handle_reorder_blocks): For conditional_execution target
update liveness once after all transformations

View File

@ -2303,9 +2303,9 @@ rest_of_handle_reorder_blocks (tree decl, rtx insns)
/* Last attempt to optimize CFG, as scheduling, peepholing and insn
splitting possibly introduced more crossjumping opportunities. */
changed |= cleanup_cfg (CLEANUP_EXPENSIVE
| (!HAVE_conditional_execution
? CLEANUP_UPDATE_LIFE : 0));
changed = cleanup_cfg (CLEANUP_EXPENSIVE
| (!HAVE_conditional_execution
? CLEANUP_UPDATE_LIFE : 0));
if (flag_sched2_use_traces && flag_schedule_insns_after_reload)
tracer ();