summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2021-10-21 15:35:24 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2021-10-21 15:35:25 +0900
commitfabe8212fee00917eec114fd6e100dc9d532090c (patch)
tree58c4fdeb99bbf2b9acf7036307d43ea3b16f0a4d /src
parentdc0d5db699b400e250e295de3b397fb628115aa9 (diff)
downloadmruby-fabe8212fee00917eec114fd6e100dc9d532090c.tar.gz
mruby-fabe8212fee00917eec114fd6e100dc9d532090c.zip
codedump.c: add indentation for `OP_MOVE`.
Diffstat (limited to 'src')
-rw-r--r--src/codedump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codedump.c b/src/codedump.c
index 03b55046e..ef03e88f3 100644
--- a/src/codedump.c
+++ b/src/codedump.c
@@ -156,7 +156,7 @@ codedump(mrb_state *mrb, const mrb_irep *irep)
printf("NOP\n");
break;
CASE(OP_MOVE, BB):
- printf("MOVE\tR%d\tR%d\t", a, b);
+ printf("MOVE\t\tR%d\tR%d\t", a, b);
print_lv_ab(mrb, irep, a, b);
break;