minor allocation speedup for immutable hash tables
This commit is contained in:
parent
d7ad3955a5
commit
0985bcda66
|
@ -2119,7 +2119,7 @@ static AVLNode *make_avl(AVLNode *left,
|
||||||
{
|
{
|
||||||
AVLNode *avl;
|
AVLNode *avl;
|
||||||
|
|
||||||
avl = MALLOC_ONE_TAGGED(AVLNode);
|
avl = scheme_malloc_small_dirty_tagged(sizeof(AVLNode));
|
||||||
SET_REQUIRED_TAG(avl->type = scheme_rt_avl_node);
|
SET_REQUIRED_TAG(avl->type = scheme_rt_avl_node);
|
||||||
avl->code = code;
|
avl->code = code;
|
||||||
avl->key = key;
|
avl->key = key;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user