diff options
Diffstat (limited to 'gcc/tree.c')
-rw-r--r-- | gcc/tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree.c b/gcc/tree.c index 2516301ba54..c688dfc5eb8 100644 --- a/gcc/tree.c +++ b/gcc/tree.c @@ -3759,7 +3759,7 @@ type_hash_add (hashcode, type) { register struct type_hash *h; - h = (struct type_hash *) oballoc (sizeof (struct type_hash)); + h = (struct type_hash *) permalloc (sizeof (struct type_hash)); h->hashcode = hashcode; h->type = type; h->next = type_hash_table[hashcode % TYPE_HASH_SIZE]; |