summaryrefslogtreecommitdiff
path: root/gcc/gcse.c
diff options
context:
space:
mode:
authorsteven <steven@138bc75d-0d04-0410-961f-82ee72b054a4>2005-12-18 11:39:02 +0000
committersteven <steven@138bc75d-0d04-0410-961f-82ee72b054a4>2005-12-18 11:39:02 +0000
commit4e9a0141719bb84988cb0fcdd41157183eaf751d (patch)
tree20aaf0ab94d16151419ff35d486de966023fb26d /gcc/gcse.c
parent89ec5e21150b4fe8a1843e2ea6cfbd4192f52aef (diff)
downloadgcc-4e9a0141719bb84988cb0fcdd41157183eaf751d.tar.gz
* gcse.c (gcse_main, bypass_jumps): Fix non-GNU-isms from
the 2005-12-17 patch to renumber the entry and exit blocks. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@108751 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gcse.c')
-rw-r--r--gcc/gcse.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/gcse.c b/gcc/gcse.c
index af7444e8504..df6e48436a1 100644
--- a/gcc/gcse.c
+++ b/gcc/gcse.c
@@ -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);