diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2021-10-21 15:35:24 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2021-10-21 15:35:25 +0900 |
| commit | fabe8212fee00917eec114fd6e100dc9d532090c (patch) | |
| tree | 58c4fdeb99bbf2b9acf7036307d43ea3b16f0a4d /src/codedump.c | |
| parent | dc0d5db699b400e250e295de3b397fb628115aa9 (diff) | |
| download | mruby-fabe8212fee00917eec114fd6e100dc9d532090c.tar.gz mruby-fabe8212fee00917eec114fd6e100dc9d532090c.zip | |
codedump.c: add indentation for `OP_MOVE`.
Diffstat (limited to 'src/codedump.c')
| -rw-r--r-- | src/codedump.c | 2 |
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; |
