remove debug output

This commit is contained in:
corey 2024-01-19 16:01:48 -06:00
parent be5bd4d5fe
commit 4588c4fc34

2
gen.c
View File

@ -732,7 +732,7 @@ void gen_eval(Gen*gen,const PNode*pn,FILE*file)
if(!gen_findfunc(gen,&tmpelem))
if(!gen_findvar(gen,&tmpelem))
err_log("%u: undeclared identifier '%s'",vec_at(&pn->tokens,0,Tok*)->line,tmpelem.val.name);
printf("[[%s:%lu]]\n",tmpelem.val.name,tmpelem.type);
/* printf("[[%s:%lu]]\n",tmpelem.val.name,tmpelem.type); */
vec_push(&stack,&tmpelem);
}
break;