diff options
author | steven <steven@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-03-12 19:38:06 +0000 |
---|---|---|
committer | steven <steven@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-03-12 19:38:06 +0000 |
commit | 154480b16c909e4cd559739cf3753f587d603a69 (patch) | |
tree | 15607dc253aed0b6bf688c4fe381a3d1c758d403 /gcc/passes.c | |
parent | 974bc84e97db9d9741e71dd74930e98f0bec94e9 (diff) | |
download | gcc-154480b16c909e4cd559739cf3753f587d603a69.tar.gz |
* tree-pass.h (pass_into_cfg_layout_mode,
pass_outof_cfg_layout_mode): Declare.
* cfglayout.c (into_cfg_layout_mode, outof_cfg_layout_mode,
pass_into_cfg_layout_mode, pass_outof_cfg_layout_mode): New.
* passes.c (pass_into_cfg_layout_mode): Schedule before jump2.
(pass_outof_cfg_layout_mode): Schedule after pass_rtl_ifcvt.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@122858 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/passes.c')
-rw-r--r-- | gcc/passes.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/passes.c b/gcc/passes.c index 28bda4441e6..b93cc6c262f 100644 --- a/gcc/passes.c +++ b/gcc/passes.c @@ -658,6 +658,7 @@ init_optimization_passes (void) NEXT_PASS (pass_initial_value_sets); NEXT_PASS (pass_unshare_all_rtl); NEXT_PASS (pass_instantiate_virtual_regs); + NEXT_PASS (pass_into_cfg_layout_mode); NEXT_PASS (pass_jump2); NEXT_PASS (pass_lower_subreg); NEXT_PASS (pass_cse); @@ -665,6 +666,7 @@ init_optimization_passes (void) NEXT_PASS (pass_gcse); NEXT_PASS (pass_jump_bypass); NEXT_PASS (pass_rtl_ifcvt); + NEXT_PASS (pass_outof_cfg_layout_mode); NEXT_PASS (pass_tracer); /* Perform loop optimizations. It might be better to do them a bit sooner, but we want the profile feedback to work more |