diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-02-23 16:46:32 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-02-23 16:46:32 +0000 |
commit | 8b7d416afb28fb719ee09035f1622b736feb9c5a (patch) | |
tree | 72a7867b925f6427a87f992d247de59324e52cd7 /gcc/ggc.h | |
parent | 6e0613db4999dfb6aa2c0aa273c041374ef36538 (diff) | |
download | gcc-8b7d416afb28fb719ee09035f1622b736feb9c5a.tar.gz |
PR c/12245
* ggc.h (htab_create_ggc): Use ggc_free to free hashtable when resizing.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@144384 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ggc.h')
-rw-r--r-- | gcc/ggc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ggc.h b/gcc/ggc.h index 74c36394d1c..5b2743b3386 100644 --- a/gcc/ggc.h +++ b/gcc/ggc.h @@ -249,7 +249,7 @@ extern void dump_ggc_loc_statistics (bool); #define ggc_alloc_tree(LENGTH) ((tree) ggc_alloc_zone (LENGTH, &tree_zone)) #define htab_create_ggc(SIZE, HASH, EQ, DEL) \ - htab_create_alloc (SIZE, HASH, EQ, DEL, ggc_calloc, NULL) + htab_create_alloc (SIZE, HASH, EQ, DEL, ggc_calloc, ggc_free) #define splay_tree_new_ggc(COMPARE) \ splay_tree_new_with_allocator (COMPARE, NULL, NULL, \ |