From 0ca4f74967bb5a439b1f3d322ae7729265b917a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lourens=20Naud=C3=A9?= Date: Wed, 11 Sep 2019 00:18:41 +0100 Subject: [PATCH] Right size the numtable in insn_make_insn_table to VM_INSTRUCTION_SIZE --- compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compile.c b/compile.c index df7f467c81..53d88eef7f 100644 --- a/compile.c +++ b/compile.c @@ -8647,7 +8647,7 @@ insn_make_insn_table(void) { struct st_table *table; int i; - table = st_init_numtable(); + table = st_init_numtable_with_size(VM_INSTRUCTION_SIZE); for (i=0; i