]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
toplev.c (rest_of_handle_reorder_blocks): Fix pasto in previous commit.
authorJan Hubicka <jh@suse.cz>
Sat, 17 Jan 2004 12:28:57 +0000 (13:28 +0100)
committerJan Hubicka <hubicka@gcc.gnu.org>
Sat, 17 Jan 2004 12:28:57 +0000 (12:28 +0000)
* toplev.c (rest_of_handle_reorder_blocks): Fix pasto in previous
commit.

From-SVN: r76035

gcc/ChangeLog
gcc/toplev.c

index 1c11ea771e37dd92306ae383e22afb80f08cb429..e1f443c2db37df79250abbe478ea96409d2f05dc 100644 (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
index 6850914f099a640867cceaa9efe62f6b35e1729e..0a2d607b7907524d1a22d5bfd6fb585235209eee 100644 (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 ();