diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-01-23 11:02:09 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-01-23 11:02:09 +0000 |
commit | c59b7e96d8fdfadf3a8af5c33244638c78cb6abd (patch) | |
tree | 802fba0f5d8b9b39d10bd272582ae4909f3a1a5e /gcc/cfgcleanup.c | |
parent | 7a442f2bd81886b4092d5e5e32193f3878696605 (diff) | |
download | gcc-c59b7e96d8fdfadf3a8af5c33244638c78cb6abd.tar.gz |
* basic-block.h (PROP_POSTRELOAD): New macro.
(CLEANUP_LOG_LINKS): New.
* cfgcleanup.c (cleanup_cfg): Only PROP_LOG_LINKS when asked to.
* toplev.c (rest_of_handle_life): Preserve LOG_LINKS trought cleanup_cfg.
* cselib.c (value_pool): New.
(new_cselib_val): Use pool.
(cselib_init): Initialize value_pool
(cselib_finish): Free pool.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@76405 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfgcleanup.c')
-rw-r--r-- | gcc/cfgcleanup.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/cfgcleanup.c b/gcc/cfgcleanup.c index ad44cbb4467..10bffe77293 100644 --- a/gcc/cfgcleanup.c +++ b/gcc/cfgcleanup.c @@ -1916,7 +1916,8 @@ cleanup_cfg (int mode) PROP_DEATH_NOTES | PROP_SCAN_DEAD_CODE | PROP_KILL_DEAD_CODE - | PROP_LOG_LINKS)) + | ((mode & CLEANUP_LOG_LINKS) + ? PROP_LOG_LINKS : 0))) break; } else if (!(mode & (CLEANUP_NO_INSN_DEL | CLEANUP_PRE_SIBCALL)) |