summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2021-12-20 17:44:31 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2021-12-20 17:44:31 +0900
commit5774a7a38b065ae34b65f5886f06d271db9914aa (patch)
tree668e6feda51418061c5e677f26dbfb54dbfdc66a
parenta17955259ebc1bf49e6d5361fe08205e526c4ac3 (diff)
downloadmruby-5774a7a38b065ae34b65f5886f06d271db9914aa.tar.gz
mruby-5774a7a38b065ae34b65f5886f06d271db9914aa.zip
codedump.c: adjust the position of local variable labels.
-rw-r--r--src/codedump.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/codedump.c b/src/codedump.c
index bc5ba8146..5d763fa37 100644
--- a/src/codedump.c
+++ b/src/codedump.c
@@ -452,11 +452,11 @@ codedump(mrb_state *mrb, const mrb_irep *irep)
printf("EQ\t\tR%d\tR%d\n", a, a+1);
break;
CASE(OP_ARRAY, BB):
- printf("ARRAY\t\tR%d\tR%d\t%d\t", a, a, b);
+ printf("ARRAY\t\tR%d\tR%d\t%d", a, a, b);
print_lv_a(mrb, irep, a);
break;
CASE(OP_ARRAY2, BBB):
- printf("ARRAY\t\tR%d\tR%d\t%d\t", a, b, c);
+ printf("ARRAY\t\tR%d\tR%d\t%d", a, b, c);
print_lv_ab(mrb, irep, a, b);
break;
CASE(OP_ARYCAT, B):