diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-04-27 04:42:09 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-04-27 04:42:09 +0000 |
commit | dafa7856e7b894a472e5b317ad15b364e28a8c18 (patch) | |
tree | c6db78e17bf4c4317d841efb20887069cba63452 /gcc/reg-stack.c | |
parent | 44c85df1c0e1b39e5b322f5feaca4a7ae45941cb (diff) | |
download | gcc-dafa7856e7b894a472e5b317ad15b364e28a8c18.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33459 138bc75d-0d04-0410-961f-82ee72b054a4
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 75725610dfa..5750e754f68 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)); |