diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2015-10-22 00:36:51 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2015-10-22 00:36:51 +0900 |
| commit | 73fa6486c68d80aad2ae24991e344f42eba4c7e6 (patch) | |
| tree | 087c2994f15f3e6c201af2214312ad6a6d683a0f /src/codedump.c | |
| parent | 48771a357cbfb4ce86764a420997c0df5f5ee5b2 (diff) | |
| download | mruby-73fa6486c68d80aad2ae24991e344f42eba4c7e6.tar.gz mruby-73fa6486c68d80aad2ae24991e344f42eba4c7e6.zip | |
align codedump output for OP_RETURN
Diffstat (limited to 'src/codedump.c')
| -rw-r--r-- | src/codedump.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/codedump.c b/src/codedump.c index 755c78d15..f08d8bfff 100644 --- a/src/codedump.c +++ b/src/codedump.c @@ -240,11 +240,11 @@ codedump(mrb_state *mrb, mrb_irep *irep) switch (GETARG_B(c)) { case OP_R_NORMAL: case OP_R_RETURN: - printf("\treturn"); break; + printf("\treturn\t"); break; case OP_R_BREAK: - printf("\tbreak"); break; + printf("\tbreak\t"); break; default: - printf("\tbroken"); break; + printf("\tbroken\t"); break; break; } print_lv(mrb, irep, c, RA); |
