diff options
author | Steven Bosscher <stevenb@suse.de> | 2005-07-11 13:31:44 +0000 |
---|---|---|
committer | Steven Bosscher <steven@gcc.gnu.org> | 2005-07-11 13:31:44 +0000 |
commit | 2dd2d53e2c8c049a08ce582ee9354c884e5dd857 (patch) | |
tree | 7833a753cbcf6ef3e68611482f64752ccc371262 /gcc/ChangeLog | |
parent | 8637038aa8da786fcb53e8192cf9dac20bc62ed5 (diff) | |
download | gcc-2dd2d53e2c8c049a08ce582ee9354c884e5dd857.zip gcc-2dd2d53e2c8c049a08ce582ee9354c884e5dd857.tar.gz gcc-2dd2d53e2c8c049a08ce582ee9354c884e5dd857.tar.bz2 |
basic-block.h: Give the BB flags enum a name, bb_flags.
* basic-block.h: Give the BB flags enum a name, bb_flags.
Add new flags BB_FORWARDER_BLOCK, and BB_NONTHREADABLE_BLOCK.
* cfgcleanup.c (enum bb_flags): Remove here.
(BB_FLAGS, BB_SET_FLAG, BB_CLEAR_FLAG): Remove.
(notice_new_block): Set/test bb->flags instead of aux via BB_FLAGS.
(update_forwarder_flag): Likewise.
(thread_jump): Likewise.
(try_forward_edges): Likewise.
(try_optimize_cfg): Likewise. Clear bb->flags before updating the
forwarder flags. Don't clear bb->aux for all basic blocks. Only
reset the BB_FORWARDER_BLOCK and BB_NONTHREADABLE_BLOCK flags.
From-SVN: r101876
Diffstat (limited to 'gcc/ChangeLog')
-rw-r--r-- | gcc/ChangeLog | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6178124..7199ddd 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,17 @@ +2005-07-11 Steven Bosscher <stevenb@suse.de> + + * basic-block.h: Give the BB flags enum a name, bb_flags. + Add new flags BB_FORWARDER_BLOCK, and BB_NONTHREADABLE_BLOCK. + * cfgcleanup.c (enum bb_flags): Remove here. + (BB_FLAGS, BB_SET_FLAG, BB_CLEAR_FLAG): Remove. + (notice_new_block): Set/test bb->flags instead of aux via BB_FLAGS. + (update_forwarder_flag): Likewise. + (thread_jump): Likewise. + (try_forward_edges): Likewise. + (try_optimize_cfg): Likewise. Clear bb->flags before updating the + forwarder flags. Don't clear bb->aux for all basic blocks. Only + reset the BB_FORWARDER_BLOCK and BB_NONTHREADABLE_BLOCK flags. + 2005-07-11 Richard Guenther <rguenther@suse.de> * config/i386/i386.opt: New target option -msseregparm. |