diff options
author | Peter Zhu <[email protected]> | 2024-01-26 12:19:54 -0500 |
---|---|---|
committer | Peter Zhu <[email protected]> | 2024-01-29 10:05:32 -0500 |
commit | fde3d065e65d804ce5d8fc982aafd4c2d94d4388 (patch) | |
tree | 0146d4afe77f2312d484a2093b6debf0c79bb1d0 /compile.c | |
parent | c422805bbb95b1a45de1873d51cc1ec4fbbd27a0 (diff) |
Add removable and refcnt output to labels
Co-Authored-By: Kevin Newton <[email protected]>
Diffstat (limited to 'compile.c')
-rw-r--r-- | compile.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |