diff options
author | Richard Henderson <rth@cygnus.com> | 1999-11-04 16:49:03 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 1999-11-04 16:49:03 -0800 |
commit | e7749837caaa5c7a7fddea3e8eb90b852cead3d6 (patch) | |
tree | 36caca6632c74bf9cd783c44f1c99239c1b55570 /gcc/local-alloc.c | |
parent | 920a303df913c5bcc6912ce722bee38e8fc04197 (diff) | |
download | gcc-e7749837caaa5c7a7fddea3e8eb90b852cead3d6.zip gcc-e7749837caaa5c7a7fddea3e8eb90b852cead3d6.tar.gz gcc-e7749837caaa5c7a7fddea3e8eb90b852cead3d6.tar.bz2 |
bitmap.h (BITMAP_XFREE): New.
* bitmap.h (BITMAP_XFREE): New.
* flow.c (life_analysis): Use it.
(life_analysis_1): Free blocks.
* combine.c (undo_commit): New.
(try_combine): Use it. Don't zap undobuf.undos.
(combine_instructions): Don't zap undobuf.undos; free the
undobuf.frees list.
* local-alloc.c (local_alloc): Free qty_phys_num_sugg.
* stmt.c (cost_table_): New.
(estimate_case_costs): Use it instead of xmalloc.
* toplev.c (compile_file): Reuse dumpname memory instead
of strdup'ing it.
From-SVN: r30404
Diffstat (limited to 'gcc/local-alloc.c')
-rw-r--r-- | gcc/local-alloc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/local-alloc.c b/gcc/local-alloc.c index 3578f85..a135cad 100644 --- a/gcc/local-alloc.c +++ b/gcc/local-alloc.c @@ -420,6 +420,7 @@ local_alloc () free (qty_phys_copy_sugg); free (qty_phys_num_copy_sugg); free (qty_phys_sugg); + free (qty_phys_num_sugg); free (qty_birth); free (qty_death); free (qty_first_reg); |