mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
Merge pull request #2246 from take-cheeze/fix_codedump
Remove unnecessary newline in `OP_GETGLOBAL` codedump.
This commit is contained in:
+1
-1
@@ -2754,7 +2754,7 @@ codedump(mrb_state *mrb, mrb_irep *irep)
|
||||
print_lv(mrb, irep, c, RA);
|
||||
break;
|
||||
case OP_GETGLOBAL:
|
||||
printf("OP_GETGLOBAL\tR%d\t:%s\n", GETARG_A(c),
|
||||
printf("OP_GETGLOBAL\tR%d\t:%s", GETARG_A(c),
|
||||
mrb_sym2name(mrb, irep->syms[GETARG_Bx(c)]));
|
||||
print_lv(mrb, irep, c, RA);
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user