From 8cf0745c6280967fe5c98689613e458baa452f31 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Thu, 10 Oct 2019 13:54:27 -0400 Subject: [PATCH] Updated comment --- runtime.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/runtime.c b/runtime.c index 80b0f91d..412a6f86 100644 --- a/runtime.c +++ b/runtime.c @@ -429,9 +429,8 @@ list global_table = NULL; void add_global(object * glo) { - // It would probably be more efficient to allocate - // a contiguous block of memory for this... for now - // this is more expedient + // Tried using a vpbuffer for this and the benchmark + // results were the same or worse. global_table = malloc_make_pair(mcvar(glo), global_table); }