diff options
| author | WormHeamer | 2025-08-03 22:01:25 -0400 |
|---|---|---|
| committer | WormHeamer | 2025-08-03 22:01:25 -0400 |
| commit | 487e48e985c6fa6762454af661f666fbe77fcdd1 (patch) | |
| tree | e463ab7394d64fdd701c0c6d8d71409583220053 /main.c | |
| parent | a49e785e8536acd6d5ff2c6bebf8d9902d2f3620 (diff) | |
comment out some debug printfs
Diffstat (limited to 'main.c')
| -rw-r--r-- | main.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 }; |
