aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Hubicka <jh@suse.cz>2004-01-17 13:28:57 +0100
committerJan Hubicka <hubicka@gcc.gnu.org>2004-01-17 12:28:57 +0000
commit26c0473bc99c98bd6280e3429c989c8d373b282a (patch)
treef863e472ced9539884d8226627989d2bf2f9f310
parentf2e16e973b957b130293059a4117c35dffe6b36a (diff)
downloadgcc-26c0473bc99c98bd6280e3429c989c8d373b282a.zip
gcc-26c0473bc99c98bd6280e3429c989c8d373b282a.tar.gz
gcc-26c0473bc99c98bd6280e3429c989c8d373b282a.tar.bz2
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
-rw-r--r--gcc/ChangeLog3
-rw-r--r--gcc/toplev.c6
2 files changed, 6 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 1c11ea7..e1f443c 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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
diff --git a/gcc/toplev.c b/gcc/toplev.c
index 6850914..0a2d607 100644
--- a/gcc/toplev.c
+++ b/gcc/toplev.c
@@ -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 ();