Commit 26c0473b by Jan Hubicka Committed by Jan Hubicka

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
parent f2e16e97
2004-01-17 Jan Hubicka <jh@suse.cz> 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. * toplev.c (HAVE_conditional_execution): Provide default.
(rest_of_handle_reorder_blocks): For conditional_execution target (rest_of_handle_reorder_blocks): For conditional_execution target
update liveness once after all transformations update liveness once after all transformations
......
...@@ -2303,9 +2303,9 @@ rest_of_handle_reorder_blocks (tree decl, rtx insns) ...@@ -2303,9 +2303,9 @@ rest_of_handle_reorder_blocks (tree decl, rtx insns)
/* Last attempt to optimize CFG, as scheduling, peepholing and insn /* Last attempt to optimize CFG, as scheduling, peepholing and insn
splitting possibly introduced more crossjumping opportunities. */ splitting possibly introduced more crossjumping opportunities. */
changed |= cleanup_cfg (CLEANUP_EXPENSIVE changed = cleanup_cfg (CLEANUP_EXPENSIVE
| (!HAVE_conditional_execution | (!HAVE_conditional_execution
? CLEANUP_UPDATE_LIFE : 0)); ? CLEANUP_UPDATE_LIFE : 0));
if (flag_sched2_use_traces && flag_schedule_insns_after_reload) if (flag_sched2_use_traces && flag_schedule_insns_after_reload)
tracer (); tracer ();
......
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