diff options
author | Mark Mitchell <mark@codesourcery.com> | 1999-10-29 09:49:23 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 1999-10-29 09:49:23 +0000 |
commit | 5faf03ae77a43db0e5a685a01eb5b4023b09638f (patch) | |
tree | 610028a55913271a69abf4d597b12ed1df6999c0 /gcc/except.c | |
parent | 3baa501d812db77b1957928294a753c372104afb (diff) | |
download | gcc-5faf03ae77a43db0e5a685a01eb5b4023b09638f.zip gcc-5faf03ae77a43db0e5a685a01eb5b4023b09638f.tar.gz gcc-5faf03ae77a43db0e5a685a01eb5b4023b09638f.tar.bz2 |
except.c (free_eh_nesting_info): Free the info itself.
* except.c (free_eh_nesting_info): Free the info itself.
* function.c (free_after_compilation): Don't free NULL.
* gcse.c (alloc_pre_mem): Free the temp_bitmap, too.
(pre_edge_insert): Free inserted.
* stmt.c (free_stmt_status): Don't free NULL.
From-SVN: r30255
Diffstat (limited to 'gcc/except.c')
-rw-r--r-- | gcc/except.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/except.c b/gcc/except.c index 3c7692c..c6f7bf5 100644 --- a/gcc/except.c +++ b/gcc/except.c @@ -3297,5 +3297,6 @@ free_eh_nesting_info (info) free (info->handlers[x]); free (info->handlers); } + free (info); } } |