diff options
author | Neil Booth <neil@daikokuya.demon.co.uk> | 2001-08-11 12:37:19 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2001-08-11 12:37:19 +0000 |
commit | bef985f3f69e6f63b144e936b599517e2d6b0601 (patch) | |
tree | fcbebbbfda56236b89a255fb6864d9fcde8b6022 /gcc/hashtable.c | |
parent | 4d5f3fbd61ad7e6a13424fa720bda3888d6ef429 (diff) | |
download | gcc-bef985f3f69e6f63b144e936b599517e2d6b0601.zip gcc-bef985f3f69e6f63b144e936b599517e2d6b0601.tar.gz gcc-bef985f3f69e6f63b144e936b599517e2d6b0601.tar.bz2 |
cpphash.c (_cpp_destroy_hashtable): Use ht_destroy.
* cpphash.c (_cpp_destroy_hashtable): Use ht_destroy.
* cpphash.h (CPP_IN_SYSTEM_HEADER): Fix.
(struct cpp_pool): New member first.
* cppinit.c (append_include_chain): Plug memory leaks.
* cpplib.c (cpp_register_pragma, cpp_register_pragma_space):
Allocate pragma structures from the (aligned) macro pool to
avoid leaking memory.
* cpplex.c (_cpp_init_pool, _cpp_free_pool): Use pool->first
so we don't leak memory.
* hashtable.c (ht_destroy): New.
* hashtable.h (ht_destroy): New.
From-SVN: r44794
Diffstat (limited to 'gcc/hashtable.c')
-rw-r--r-- | gcc/hashtable.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gcc/hashtable.c b/gcc/hashtable.c index 82c3a9e..7d0359a 100644 --- a/gcc/hashtable.c +++ b/gcc/hashtable.c @@ -94,6 +94,17 @@ ht_create (order) return table; } +/* Frees all memory associated with a hash table. */ + +void +ht_destroy (table) + hash_table *table; +{ + obstack_free (&table->stack, NULL); + free (table->entries); + free (table); +} + /* Returns the hash entry for the a STR of length LEN. If that string already exists in the table, returns the existing entry, and, if INSERT is CPP_ALLOCED, frees the last obstack object. If the |