diff options
author | Richard Henderson <rth@cygnus.com> | 2000-04-26 21:42:09 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2000-04-26 21:42:09 -0700 |
commit | 7f8a79ba7ef4483fe205890213a5584c76683d45 (patch) | |
tree | c6db78e17bf4c4317d841efb20887069cba63452 /gcc/toplev.c | |
parent | 5229452121bd616e95e96cc9adc7912a3c74b945 (diff) | |
download | gcc-7f8a79ba7ef4483fe205890213a5584c76683d45.zip gcc-7f8a79ba7ef4483fe205890213a5584c76683d45.tar.gz gcc-7f8a79ba7ef4483fe205890213a5584c76683d45.tar.bz2 |
basic-block.h (life_analysis): Declare here ...
* basic-block.h (life_analysis): Declare here ...
* output.h: ... not here.
* flow.c (life_analysis): Remove nregs parameter; replace
remove_dead_code with flags. Remove ssa dead code check.
Only init alias analysis if we'll use it.
* reg-stack.c (reg_to_stack): Update life_analysis arguments.
* ssa.c (convert_to_ssa): Likewise.
(convert_from_ssa): Likewise.
* toplev.c (rest_of_compilation): Likewise.
From-SVN: r33459
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r-- | gcc/toplev.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c index 8e02178..dd8ea2a 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -3247,7 +3247,7 @@ rest_of_compilation (decl) cleanup_cfg (insns); if (optimize) calculate_loop_depth (rtl_dump_file); - life_analysis (insns, max_reg_num (), rtl_dump_file, 1); + life_analysis (insns, rtl_dump_file, PROP_FINAL); mark_constant_function (); }); @@ -3434,7 +3434,7 @@ rest_of_compilation (decl) TIMEVAR (flow2_time, { cleanup_cfg (insns); - life_analysis (insns, max_reg_num (), rtl_dump_file, 1); + life_analysis (insns, rtl_dump_file, PROP_FINAL); }); /* This is kind of heruistics. We need to run combine_stack_adjustments |