summaryrefslogtreecommitdiff
path: root/gcc/toplev.c
diff options
context:
space:
mode:
authorhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2004-01-17 12:28:57 +0000
committerhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2004-01-17 12:28:57 +0000
commit8c2c4b45bb8e09de3af4c718135a843a86ee307d (patch)
treef863e472ced9539884d8226627989d2bf2f9f310 /gcc/toplev.c
parentadbd36b54da2807c00ee981cbd07af43af3c54a7 (diff)
downloadgcc-8c2c4b45bb8e09de3af4c718135a843a86ee307d.tar.gz
* toplev.c (rest_of_handle_reorder_blocks): Fix pasto in previous
commit. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@76035 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r--gcc/toplev.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c
index 6850914f099..0a2d607b790 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 ();