summaryrefslogtreecommitdiff
path: root/compile.c
diff options
context:
space:
mode:
authorPeter Zhu <[email protected]>2024-01-26 12:19:54 -0500
committerPeter Zhu <[email protected]>2024-01-29 10:05:32 -0500
commitfde3d065e65d804ce5d8fc982aafd4c2d94d4388 (patch)
tree0146d4afe77f2312d484a2093b6debf0c79bb1d0 /compile.c
parentc422805bbb95b1a45de1873d51cc1ec4fbbd27a0 (diff)
Add removable and refcnt output to labels
Co-Authored-By: Kevin Newton <[email protected]>
Diffstat (limited to 'compile.c')
-rw-r--r--compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/compile.c b/compile.c
index f1deca3c29..3221c6d981 100644
--- a/compile.c
+++ b/compile.c
@@ -10859,7 +10859,7 @@ dump_disasm_list_with_cursor(const LINK_ELEMENT *link, const LINK_ELEMENT *curr,
case ISEQ_ELEMENT_LABEL:
{
lobj = (LABEL *)link;
- printf(LABEL_FORMAT" [sp: %d]%s\n", lobj->label_no, lobj->sp,
+ printf(LABEL_FORMAT" [sp: %d, unremovable: %d, refcnt: %d]%s\n", lobj->label_no, lobj->sp, lobj->unremovable, lobj->refcnt,
dest == lobj ? " <---" : "");
break;
}