From 852c6ec7ac379280e79ba706c60f2f1aad152f67 Mon Sep 17 00:00:00 2001 From: Roger Sayle Date: Mon, 10 Jun 2002 22:33:08 +0000 Subject: cfgrtl.c (create_basic_block_structure): Remove index argument and use last_basic_block++ instead. 2002-06-10 Roger Sayle Andreas Jaeger * cfgrtl.c (create_basic_block_structure): Remove index argument and use last_basic_block++ instead. (create_basic_block): Update. * cfgbuild.c (find_basic_blocks_1): Likewise. * cfgrtl.c (compute_bb_for_insn): Remove unused "max" argument. * haifa-sched.c (sched_init): Update compute_bb_for_insn caller. * sched-ebb.c (schedule_ebbs): Likewise. * sched-rgn.c (schedule_insns): Likewise. * ssa-ccp.c (ssa_const_prop): Likewise. * ssa-dcs.c (ssa_eliminate_dead_code): Likewise. * toplev.c (rest_of_compilation): Likewise. * config/ia64/ia64.c (ia64_reorg): Likewise. Co-Authored-By: Andreas Jaeger From-SVN: r54477 --- gcc/sched-rgn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/sched-rgn.c') diff --git a/gcc/sched-rgn.c b/gcc/sched-rgn.c index 280f330..30b2cf0 100644 --- a/gcc/sched-rgn.c +++ b/gcc/sched-rgn.c @@ -3016,7 +3016,7 @@ schedule_insns (dump_file) best way to test for this kind of thing... */ allocate_reg_life_data (); - compute_bb_for_insn (get_max_uid ()); + compute_bb_for_insn (); any_large_regions = 0; large_region_blocks = sbitmap_alloc (last_basic_block); -- cgit v1.1