diff options
author | Nathan Sidwell <nathan@codesourcery.com> | 2004-11-25 09:30:04 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@gcc.gnu.org> | 2004-11-25 09:30:04 +0000 |
commit | 04389919a6dbcb904c04ad910b4da49ff52d5d00 (patch) | |
tree | 19da8d45d735bf932467e92c989a251abed7bb43 /gcc/bb-reorder.c | |
parent | eb9744a7a65b4de6444f152a7e3475ae0b665c75 (diff) | |
download | gcc-04389919a6dbcb904c04ad910b4da49ff52d5d00.tar.gz |
basic-block.h (OBSTACK_ALLOC_REG_SET): Rename to ...
* basic-block.h (OBSTACK_ALLOC_REG_SET): Rename to ...
(ALLOC_REG_SET): ... here.
(FREE_REG_SET): Adjust.
(XMALLOC_REG_SET, XFREE_REG_SET): Remove.
* bb-reorder.c (fix_crossing_conditional_branches): Adjust.
* cfglayout.c (cfg_layout_duplicate_bb): Adjust.
* cfgrtl.c (rtl_split_block, rtl_split_edge,
safe_insert_insn_on_edge, cfg_layout_split_edge): Adjust.
* flow.c (update_life_info, calculate_global_regs_live,
allocate_bb_life_data, init_propagate_block_info): Adjust.
* global.c (build_insn_chain): Adjust.
* ifcvt.c (dead_or_predicable): Adjust.
* loop-iv.c (simplify_using_initial_values): Adjust.
* recog.c (peephole2_optimize): Adjust.
* sched-deps.c (init_deps_global): Adjust.
From-SVN: r91279
Diffstat (limited to 'gcc/bb-reorder.c')
-rw-r--r-- | gcc/bb-reorder.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gcc/bb-reorder.c b/gcc/bb-reorder.c index 7572e526fd2..603f921c5e8 100644 --- a/gcc/bb-reorder.c +++ b/gcc/bb-reorder.c @@ -1690,10 +1690,8 @@ fix_crossing_conditional_branches (void) /* Update register liveness information. */ - new_bb->global_live_at_start = - OBSTACK_ALLOC_REG_SET (®_obstack); - new_bb->global_live_at_end = - OBSTACK_ALLOC_REG_SET (®_obstack); + new_bb->global_live_at_start = ALLOC_REG_SET (®_obstack); + new_bb->global_live_at_end = ALLOC_REG_SET (®_obstack); COPY_REG_SET (new_bb->global_live_at_end, prev_bb->global_live_at_end); COPY_REG_SET (new_bb->global_live_at_start, |