aboutsummaryrefslogtreecommitdiff
path: root/gcc/config/ia64
diff options
context:
space:
mode:
authorJan Hubicka <jh@suse.cz>2002-03-14 11:10:13 +0100
committerJan Hubicka <hubicka@gcc.gnu.org>2002-03-14 10:10:13 +0000
commit1e3881c2a0551c33bfdbe39463225d0ebf0d5e2a (patch)
tree43fec42013e1f42932ed89af0a56c4423c96c03d /gcc/config/ia64
parent200ef6348c95471448d8e3b97918e1bced384baf (diff)
downloadgcc-1e3881c2a0551c33bfdbe39463225d0ebf0d5e2a.zip
gcc-1e3881c2a0551c33bfdbe39463225d0ebf0d5e2a.tar.gz
gcc-1e3881c2a0551c33bfdbe39463225d0ebf0d5e2a.tar.bz2
toplev.c (rest_of_compilation): Add CLEANUP_UPDATE_LIFE to cfg_cleanup call after liveness analysis.
* toplev.c (rest_of_compilation): Add CLEANUP_UPDATE_LIFE to cfg_cleanup call after liveness analysis. * recog.c (split_insn): Use delete_insn_and_edges. * cfgrtl.c (verify_flow_info): Be permisive about non-any_condjump instructions to have branch prediction notes. * ia64reorg.c (ia64_reorg): Do not rebuild CFG. From-SVN: r50765
Diffstat (limited to 'gcc/config/ia64')
-rw-r--r--gcc/config/ia64/ia64.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/config/ia64/ia64.c b/gcc/config/ia64/ia64.c
index 8afa951..186f4b3 100644
--- a/gcc/config/ia64/ia64.c
+++ b/gcc/config/ia64/ia64.c
@@ -6733,9 +6733,10 @@ ia64_reorg (insns)
if (optimize == 0)
split_all_insns_noflow ();
- /* Make sure the CFG and global_live_at_start are correct
- for emit_predicate_relation_info. */
- find_basic_blocks (insns, max_reg_num (), NULL);
+ /* We are freeing block_for_insn in the toplev to keep compatibility
+ with old MDEP_REORGS that are not CFG based. Recompute it now. */
+ compute_bb_for_insn (get_max_uid ());
+ /* update_life_info_in_dirty_blocks should be enought here. */
life_analysis (insns, NULL, PROP_DEATH_NOTES);
if (ia64_flag_schedule_insns2)