diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2015-10-22 00:37:42 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2015-10-22 00:37:42 +0900 |
| commit | e5fbf9dfa2bbbe5ecbf6cc25ff5d35e7da7f00e3 (patch) | |
| tree | 5374b9c3daf2eafb51918bde3d09ab6e165ca7df /src/codedump.c | |
| parent | 73fa6486c68d80aad2ae24991e344f42eba4c7e6 (diff) | |
| download | mruby-e5fbf9dfa2bbbe5ecbf6cc25ff5d35e7da7f00e3.tar.gz mruby-e5fbf9dfa2bbbe5ecbf6cc25ff5d35e7da7f00e3.zip | |
align codedump output for OP_JMP
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 f08d8bfff..d87c729f9 100644 --- a/src/codedump.c +++ b/src/codedump.c @@ -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)); |
