diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-06-27 23:06:33 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-06-27 23:06:33 +0000 |
commit | bc5f266a5e18a1501f2ec65a355395edfe2f272e (patch) | |
tree | 8971e4e755934027002c5bc8895d3ab1088c2e5b /gcc/cfg.c | |
parent | 8c910840957eb221a38af5a2fb7459381a00fac7 (diff) | |
download | gcc-bc5f266a5e18a1501f2ec65a355395edfe2f272e.tar.gz |
* basic-block.h (basic_block_def): Kill rbi.
(reorder_block_def): Kill; Remove next field (replaced by aux);
move other fields to ...
(rtl_bb_info): ... here.
* bb-reorder.c (find_traces, rotate_loop, find_traces_1_round,
copy_bb, connect_traces, add_labels_and_missing_jumps
fix_up_fall_thru_edges, fix_crossing_conditional_branches,
duplicate_computed_gotos, partition_hot_cold_basic-blocks):
Update to new fields.
* cfg.c (initialize_bb_rbi): Kill.
* cfglayout.c (record_effective_endpoints, fixup_reorder_chain,
fixup_fallthru_exit_predecessor, cfg_layout_duplicate_bb): Update.
* cfgrtl.c (cfg_layout_create_basic_block): Do not initialize rbi.
(try_redirect_by_replacing_jump): Update rbi references.
(cfg_layout_split_block): Likewise.
(cfg_layout_delete_block): Likewise.
(cfg_layout_merge_blocks): Likewise.
* function.c (thread_prologue_and_epilogue_insns): Likewise.
* passes.c (rest_of_handle_sms): Likewise.
* tracer.c (seen, tail_duplicate, layout_superblocks): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101359 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfg.c')
-rw-r--r-- | gcc/cfg.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/gcc/cfg.c b/gcc/cfg.c index af8a377b927..2d6a3ca5c33 100644 --- a/gcc/cfg.c +++ b/gcc/cfg.c @@ -136,16 +136,6 @@ alloc_block (void) return bb; } -/* Initialize rbi (the structure containing data used by basic block - duplication and reordering) for the given basic block. */ - -void -initialize_bb_rbi (basic_block bb) -{ - gcc_assert (!bb->rbi); - bb->rbi = ggc_alloc_cleared (sizeof (struct reorder_block_def)); -} - /* Link block B to chain after AFTER. */ void link_block (basic_block b, basic_block after) |