diff options
author | bonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-03-30 08:23:00 +0000 |
---|---|---|
committer | bonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-03-30 08:23:00 +0000 |
commit | 306780762a48ebf274599a054046ef1877869be9 (patch) | |
tree | cf9dc7d02869db774a9896b8143b80e0f92f2287 /gcc/gcse.c | |
parent | 62126877111f8eff5299bc4f206645760ad858b6 (diff) | |
download | gcc-306780762a48ebf274599a054046ef1877869be9.tar.gz |
2009-03-09 Paolo Bonzini <bonzini@gnu.org>
* cfglayout.c (pass_into_cfg_layout_mode, pass_outof_cfg_layout_mode):
Provide/destroy PROP_cfglayout respectively.
* gcse.c (pass_jump_bypass, pass_gcse): Require it.
* tree-pass.h (PROP_cfglayout): New.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@145282 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gcse.c')
-rw-r--r-- | gcc/gcse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/gcse.c b/gcc/gcse.c index ee2d31e0a42..cbb8916603e 100644 --- a/gcc/gcse.c +++ b/gcc/gcse.c @@ -6621,7 +6621,7 @@ struct rtl_opt_pass pass_jump_bypass = NULL, /* next */ 0, /* static_pass_number */ TV_BYPASS, /* tv_id */ - 0, /* properties_required */ + PROP_cfglayout, /* properties_required */ 0, /* properties_provided */ 0, /* properties_destroyed */ 0, /* todo_flags_start */ @@ -6692,7 +6692,7 @@ struct rtl_opt_pass pass_gcse = NULL, /* next */ 0, /* static_pass_number */ TV_GCSE, /* tv_id */ - 0, /* properties_required */ + PROP_cfglayout, /* properties_required */ 0, /* properties_provided */ 0, /* properties_destroyed */ 0, /* todo_flags_start */ |