diff options
author | Mark Mitchell <mark@codesourcery.com> | 1999-10-27 17:34:59 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 1999-10-27 17:34:59 +0000 |
commit | e05e2395bdab25b76b243f486994ca9d032962f1 (patch) | |
tree | 7e473bb947bcec6b461f84269de876371eb9d053 /gcc/reload1.c | |
parent | 46cc13b3e0c0e00b1797f4591256cd13585384bd (diff) | |
download | gcc-e05e2395bdab25b76b243f486994ca9d032962f1.zip gcc-e05e2395bdab25b76b243f486994ca9d032962f1.tar.gz gcc-e05e2395bdab25b76b243f486994ca9d032962f1.tar.bz2 |
alias.c (init_alias_analysis): Allocate reg_known_value and reg_known_equiv_p on the heap.
* alias.c (init_alias_analysis): Allocate reg_known_value and
reg_known_equiv_p on the heap. Likewise for new_reg_base_value
and reg_seen.
(end_alias_analysis): Free reg_known_value and reg_known_equiv_p.
* cse.c (cse_main): Call end_alias_analysis.
* haifa-sched.c (schedule_insns): Likewise.
* local-alloc. (update_equiv_regs): Likewise.
* reload1.c (reload_cse_regs): Likewise.
From-SVN: r30217
Diffstat (limited to 'gcc/reload1.c')
-rw-r--r-- | gcc/reload1.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/reload1.c b/gcc/reload1.c index 955acca..0a3371f5 100644 --- a/gcc/reload1.c +++ b/gcc/reload1.c @@ -8926,6 +8926,9 @@ reload_cse_regs_1 (first) } } + /* Clean up. */ + end_alias_analysis (); + /* Free all the temporary structures we created, and go back to the regular obstacks. */ obstack_free (&reload_obstack, firstobj); |