diff options
author | Richard Henderson <rth@cygnus.com> | 1999-10-18 15:20:27 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 1999-10-18 15:20:27 -0700 |
commit | c88e82068294b20f55b8d4ca6b302d5486f9881b (patch) | |
tree | ad7060cd4617a41e224844edcb92fdc6b9b65814 /gcc/basic-block.h | |
parent | 87b5c7e5e4321f5c069e047836e1160e371365e8 (diff) | |
download | gcc-c88e82068294b20f55b8d4ca6b302d5486f9881b.tar.gz |
basic-block.h (set_block_num): Declare.
* basic-block.h (set_block_num): Declare.
* flow.c (update_life_info): Don't call compute_bb_for_insn
or free_basic_block_vars.
* haifa-sched.c (remove_dependence): Conditionalize on HAVE_cc0.
(insn_orig_block): Remove.
(INSN_BLOCK): Remove. Update all callers to use BLOCK_NUM.
(schedule_block): Keep BLOCK_NUM up-to-date.
(schedule_insns): Use compute_bb_for_insn.
* recog.c (split_all_insns): Likewise.
(peephole2_optimize): Likewise.
From-SVN: r30073
Diffstat (limited to 'gcc/basic-block.h')
-rw-r--r-- | gcc/basic-block.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/basic-block.h b/gcc/basic-block.h index 693726c4678..ad2d15c9398 100644 --- a/gcc/basic-block.h +++ b/gcc/basic-block.h @@ -245,6 +245,7 @@ extern varray_type basic_block_for_insn; extern void compute_bb_for_insn PROTO ((int)); extern void set_block_for_insn PROTO ((rtx, basic_block)); +extern void set_block_num PROTO ((rtx, int)); extern void dump_bb_data PROTO ((FILE *, int_list_ptr *, int_list_ptr *, int)); |