align codedump output for OP_JMP

This commit is contained in:
Yukihiro "Matz" Matsumoto
2015-10-22 00:37:42 +09:00
parent 73fa6486c6
commit e5fbf9dfa2
+1 -1
View File
@@ -189,7 +189,7 @@ codedump(mrb_state *mrb, mrb_irep *irep)
print_lv(mrb, irep, c, RA);
break;
case OP_JMP:
printf("OP_JMP\t\t%03d\n", i+GETARG_sBx(c));
printf("OP_JMP\t%03d\n", i+GETARG_sBx(c));
break;
case OP_JMPIF:
printf("OP_JMPIF\tR%d\t%03d\n", GETARG_A(c), i+GETARG_sBx(c));