From be5e9cb9623b436067ab5efb753b14f409a3cccf Mon Sep 17 00:00:00 2001 From: bellard Date: Sun, 7 Nov 2004 15:45:40 +0000 Subject: [PATCH] pool for symbol allocation --- tccasm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tccasm.c b/tccasm.c index c28364e1..864f9468 100644 --- a/tccasm.c +++ b/tccasm.c @@ -302,7 +302,7 @@ static void asm_free_labels(TCCState *st) } /* remove label */ table_ident[s->v - TOK_IDENT]->sym_label = NULL; - tcc_free(s); + sym_free(s); } st->asm_labels = NULL; } -- 2.11.4.GIT