aboutsummaryrefslogtreecommitdiff
path: root/src/nodes.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nodes.c')
-rw-r--r--src/nodes.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/nodes.c b/src/nodes.c
index 05f96fe..d5a22da 100644
--- a/src/nodes.c
+++ b/src/nodes.c
@@ -144,6 +144,8 @@ void destroy_block(struct blk *b)
{
vec_destroy(&b->insns);
vec_destroy(&b->params);
+ vec_destroy(&b->args1);
+ vec_destroy(&b->args2);
free(b);
}
@@ -188,6 +190,9 @@ void dump_insn(struct insn i)
dump_val(i.in[1]);
}
+ if (i.flags)
+ printf("*");
+
printf("\n");
}