]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
gcse.c (gcse_main, [...]): Fix non-GNU-isms from the 2005-12-17 patch to renumber...
authorSteven Bosscher <stevenb@suse.de>
Sun, 18 Dec 2005 11:39:02 +0000 (11:39 +0000)
committerSteven Bosscher <steven@gcc.gnu.org>
Sun, 18 Dec 2005 11:39:02 +0000 (11:39 +0000)
* gcse.c (gcse_main, bypass_jumps): Fix non-GNU-isms from
the 2005-12-17 patch to renumber the entry and exit blocks.

From-SVN: r108751

gcc/ChangeLog
gcc/gcse.c

index 00955f3841c9beedb307bc626d84edb24be5e155..5a5a5914ae4c6a6e2c839f4757d0fa6670b19f90 100644 (file)
@@ -1,3 +1,8 @@
+2005-12-18  Steven Bosscher  <stevenb@suse.de>
+
+       * gcse.c (gcse_main, bypass_jumps): Fix non-GNU-isms from
+       the 2005-12-17 patch to renumber the entry and exit blocks.
+
 2005-12-18  Gabriel Dos Reis  <gdr@integrable-solutions.net>
 
        * doc/objc.texi (Type encoding): Fix typo.
index af7444e850485c76067c5d0d52636006d1aec0dc..df6e48436a165fea0ea80099d6bed6fde849f89c 100644 (file)
@@ -691,7 +691,8 @@ gcse_main (rtx f ATTRIBUTE_UNUSED, FILE *file)
     dump_flow_info (file);
 
   /* Return if there's nothing to do, or it is too expensive.  */
-  if (n_basic_blocks <= NUM_FIXED_BLOCKS + 1 || is_too_expensive (_("GCSE disabled")))
+  if (n_basic_blocks <= NUM_FIXED_BLOCKS + 1
+      || is_too_expensive (_("GCSE disabled")))
     return 0;
 
   gcc_obstack_init (&gcse_obstack);
@@ -6519,8 +6520,8 @@ bypass_jumps (FILE *file)
     dump_flow_info (file);
 
   /* Return if there's nothing to do, or it is too expensive.  */
-  if (n_basic_blocks <= NUM_FIXED_BLOCKS + 1 || 
-      is_too_expensive (_ ("jump bypassing disabled")))
+  if (n_basic_blocks <= NUM_FIXED_BLOCKS + 1
+      || is_too_expensive (_ ("jump bypassing disabled")))
     return 0;
 
   gcc_obstack_init (&gcse_obstack);