From 487e48e985c6fa6762454af661f666fbe77fcdd1 Mon Sep 17 00:00:00 2001 From: WormHeamer Date: Sun, 3 Aug 2025 22:01:25 -0400 Subject: comment out some debug printfs --- main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.c b/main.c index f0af5e0..1a4a6d1 100644 --- a/main.c +++ b/main.c @@ -120,12 +120,12 @@ Proc *parse_proc(Lexer *l, Unit *u) { } int type_check(Node *n) { - fprintf(stderr, "::\n"); + /*fprintf(stderr, "::\n"); for (int i = 0; i < n->in.len; i++) { fprintf(stderr, "%d: %d/%d\n", i, n->in.data[i]->val.type.lvl, n->in.data[i]->val.type.t); - } + }*/ switch (n->type) { case N_OP_NEG: n->val.type = (Type) { .lvl = T_TOP, .t = T_INT }; -- cgit v1.2.3