summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--main.c4
1 files 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 };