From f6f667372151bf5019600f056e43a6bd057de363 Mon Sep 17 00:00:00 2001 From: Nilstrieb <48135649+Nilstrieb@users.noreply.github.com> Date: Wed, 26 Jul 2023 21:36:27 +0200 Subject: [PATCH] remove console.log --- src/lower.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lower.ts b/src/lower.ts index f2fcdde..7781c91 100644 --- a/src/lower.ts +++ b/src/lower.ts @@ -403,8 +403,6 @@ function todo(msg: string): never { function addRt(cx: Context, ast: Ast) { const { mod } = cx; - console.log(cx.funcIndices); - const main = cx.funcIndices.get(ast.typeckResults!.main); if (main === undefined) { throw new Error(`main function (${main}) was not compiled.`);