aboutsummaryrefslogtreecommitdiff
path: root/gcc/passes.c
diff options
context:
space:
mode:
authorPaolo Bonzini <bonzini@gnu.org>2009-03-30 08:58:52 +0000
committerPaolo Bonzini <bonzini@gcc.gnu.org>2009-03-30 08:58:52 +0000
commitd25aa7ab77a7ffa75ba3a029d1b2fd6a4084e965 (patch)
tree5c06cd60705906a16ed5c11d8b3b2e9b2f8f7bcc /gcc/passes.c
parent9c9e26f5c0080a49ea83aafcbac0d9e619f4ad32 (diff)
downloadgcc-d25aa7ab77a7ffa75ba3a029d1b2fd6a4084e965.zip
gcc-d25aa7ab77a7ffa75ba3a029d1b2fd6a4084e965.tar.gz
gcc-d25aa7ab77a7ffa75ba3a029d1b2fd6a4084e965.tar.bz2
bb-reorder.c (partition_hot_cold_basic_blocks): Do not enter/exit cfglayout mode.
2009-03-30 Paolo Bonzini <bonzini@gnu.org> * bb-reorder.c (partition_hot_cold_basic_blocks): Do not enter/exit cfglayout mode. (pass_partition_block): Require it. * combine.c (find_single_use, reg_dead_at_p): Use CFG. (combine_instructions): Track basic blocks instead of labels. (update_cfg_for_uncondjump): New. (try_combine): Use it. Update jumps after rescanning. (pass_combine): Require PROP_cfglayout. * passes.c (pass_outof_cfg_layout_mode): Move after regmove. From-SVN: r145283
Diffstat (limited to 'gcc/passes.c')
-rw-r--r--gcc/passes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/passes.c b/gcc/passes.c
index 41904a9..bf312f9 100644
--- a/gcc/passes.c
+++ b/gcc/passes.c
@@ -758,12 +758,12 @@ init_optimization_passes (void)
NEXT_PASS (pass_reginfo_init);
NEXT_PASS (pass_inc_dec);
NEXT_PASS (pass_initialize_regs);
- NEXT_PASS (pass_outof_cfg_layout_mode);
NEXT_PASS (pass_ud_rtl_dce);
NEXT_PASS (pass_combine);
NEXT_PASS (pass_if_after_combine);
NEXT_PASS (pass_partition_blocks);
NEXT_PASS (pass_regmove);
+ NEXT_PASS (pass_outof_cfg_layout_mode);
NEXT_PASS (pass_split_all_insns);
NEXT_PASS (pass_lower_subreg2);
NEXT_PASS (pass_df_initialize_no_opt);