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/reg-stack.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/reg-stack.c')
-rw-r--r-- | gcc/reg-stack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/reg-stack.c b/gcc/reg-stack.c index 7572561..5750e75 100644 --- a/gcc/reg-stack.c +++ b/gcc/reg-stack.c @@ -435,7 +435,7 @@ reg_to_stack (first, file) build the CFG and run life analysis. */ find_basic_blocks (first, max_reg_num (), file); count_or_remove_death_notes (NULL, 1); - life_analysis (first, max_reg_num (), file, 0); + life_analysis (first, file, PROP_DEATH_NOTES); /* Set up block info for each basic block. */ bi = (block_info) xcalloc ((n_basic_blocks + 1), sizeof (*bi)); |