print not in IR

This commit is contained in:
r4 2021-12-23 21:08:01 +01:00
parent 84785dc3cf
commit a0842424ec
1 changed files with 1 additions and 0 deletions

1
ir.c
View File

@ -105,6 +105,7 @@ void print_ir(IRToks *v, const BuiltinFunc *builtin_funcs) {
switch (v->toks[i].instr) {
case IRSet:
case IRNeg:
case IRNot:
printf(" %%%zx ", v->toks[i].Unary.addr);
print_irparam(&v->toks[i].Unary.val);
break;