diff options
author | amacleod <amacleod@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-04-09 15:17:08 +0000 |
---|---|---|
committer | amacleod <amacleod@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-04-09 15:17:08 +0000 |
commit | 9b2949b9255acfb2989e44364d2b82175a58e3e9 (patch) | |
tree | feaa93448a535cf85103922cb480ccacbcbb26ee /gcc/basic-block.h | |
parent | 8e802be9a2066e0700a018fcb6dce8a66118d09b (diff) | |
download | gcc-9b2949b9255acfb2989e44364d2b82175a58e3e9.tar.gz |
2001-04-09 Andrew MacLeod <amacleod@redhat.com>
* basic-block.h (set_new_block_for_insns): New Prototype.
(set_block_num): Delete prototype.
* flow.c (set_block_num): Remove obsolete function.
(set_block_for_new_insns): Set BB for single or multiple insns.
* gcse.c (handle_avail_expr): Use set_block_for_new_insns.
(process_insn_end_bb): Use set_block_for_new_insns or
set_block_for_insn instead of set_block_num.
(pre_insert_copy_insn): Use set_block_for_new_insns.
(update_ld_motion_stores): Use set_block_for_new_insns.
(insert_insn_start_bb): Use set_block_for_new_insns.
(replace_store_insn): Use set_block_for_new_insns.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41208 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/basic-block.h')
-rw-r--r-- | gcc/basic-block.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/basic-block.h b/gcc/basic-block.h index 58f6aa1fc94..f3911c8f518 100644 --- a/gcc/basic-block.h +++ b/gcc/basic-block.h @@ -236,7 +236,7 @@ extern varray_type basic_block_for_insn; extern void compute_bb_for_insn PARAMS ((int)); extern void update_bb_for_insn PARAMS ((basic_block)); extern void set_block_for_insn PARAMS ((rtx, basic_block)); -extern void set_block_num PARAMS ((rtx, int)); +extern void set_block_for_new_insns PARAMS ((rtx, basic_block)); extern void free_basic_block_vars PARAMS ((int)); |