diff options
author | Steven Bosscher <stevenb@suse.de> | 2005-12-18 11:39:02 +0000 |
---|---|---|
committer | Steven Bosscher <steven@gcc.gnu.org> | 2005-12-18 11:39:02 +0000 |
commit | ab9a1ff8ee9df7c87c1b1d75ab2424841694cb7b (patch) | |
tree | 20aaf0ab94d16151419ff35d486de966023fb26d /gcc | |
parent | 8a6024c17bb3d71f1aea9ea1863cffc64a04d509 (diff) | |
download | gcc-ab9a1ff8ee9df7c87c1b1d75ab2424841694cb7b.zip gcc-ab9a1ff8ee9df7c87c1b1d75ab2424841694cb7b.tar.gz gcc-ab9a1ff8ee9df7c87c1b1d75ab2424841694cb7b.tar.bz2 |
gcse.c (gcse_main, [...]): Fix non-GNU-isms from the 2005-12-17 patch to renumber the entry and exit blocks.
* 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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/gcse.c | 7 |
2 files changed, 9 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 00955f3..5a5a591 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. @@ -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); |