From dcde56f29460562a4569ff1cb321534b232efdc7 Mon Sep 17 00:00:00 2001 From: JothamWong <45916998+JothamWong@users.noreply.github.com> Date: Fri, 19 Apr 2024 21:52:05 +0800 Subject: [PATCH] Remove redundant comment and TODO --- src/vm/oogavm-machine.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/vm/oogavm-machine.ts b/src/vm/oogavm-machine.ts index 1955a7a..a23b949 100644 --- a/src/vm/oogavm-machine.ts +++ b/src/vm/oogavm-machine.ts @@ -1229,8 +1229,6 @@ function updateRoots(roots, mapping) { } function initialize(numWords = 1000000) { - // TODO: Figure out an appropriate number of words - // There is definitely some bug with the memory management! constructHeap(numWords, updateRoots); PC = 0; OS[0] = initializeStack();