diff options
| -rw-r--r-- | ir/dump.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -203,6 +203,9 @@ dumpinst(const struct instr *ins) dumpref(ins->op, (&ins->l)[i]); } } + if (oisalloca(ins->op) && ins->l.t == RICON) { + bfmt(out, " \t; %d bytes", ins->l.i << (ins->op - Oalloca1)); + } bfmt(out, "\n"); } |