Skip to content

Commit

Permalink
Merge pull request #940 from pguyot/w45/fix-trace-bs_create_bin
Browse files Browse the repository at this point in the history
Fix trace with bs_create_bin/6
  • Loading branch information
fadushin authored Nov 12, 2023
2 parents 499c4ed + 29d0d5a commit f11bcf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libAtomVM/opcodesswitch.h
Original file line number Diff line number Diff line change
Expand Up @@ -6132,7 +6132,7 @@ HOT_FUNC int scheduler_entry_point(GlobalContext *glb)
DECODE_LITERAL(unit, pc);
dreg_gc_safe_t dreg;
DECODE_DEST_REGISTER_GC_SAFE(dreg, pc);
TRACE("bs_create_bin/6 fail=%i, alloc=%i live=%i unit=%i dreg=%c%i\n", fail, alloc, live, unit, T_DEST_REG_UNSAFE(dreg));
TRACE("bs_create_bin/6 fail=%i, alloc=%i live=%i unit=%i dreg=%c%i\n", fail, alloc, live, unit, T_DEST_REG_GC_SAFE(dreg));
DECODE_EXTENDED_LIST_TAG(pc);
uint32_t list_len;
DECODE_LITERAL(list_len, pc);
Expand Down

0 comments on commit f11bcf4

Please sign in to comment.