Commit 63ebc275 by Mark Mitchell Committed by Mark Mitchell

tree.c (type_hash_add): Use permalloc to allocate nodes in the hashtable.

	* tree.c (type_hash_add): Use permalloc to allocate nodes in the
	hashtable.

From-SVN: r28728
parent 086920c3
Mon Aug 16 11:56:36 1999 Mark Mitchell <mark@codesourcery.com>
* tree.c (type_hash_add): Use permalloc to allocate nodes in the
hashtable.
Mon Aug 16 17:04:15 1999 Jorn Rennecke <amylaar@cygnus.co.uk>
* mips.h (CLASS_CANNOT_CHANGE_SIZE): Define.
......
......@@ -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];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment