diff options
| author | Yukihiro Matz Matsumoto <[email protected]> | 2013-03-27 11:32:54 +0900 |
|---|---|---|
| committer | Yukihiro Matz Matsumoto <[email protected]> | 2013-03-27 11:32:54 +0900 |
| commit | d9e15a02a70992de0bbb7ddcf035d4ccc78c7a2e (patch) | |
| tree | a2aabd8eac8f8e3fd26be9f4d4ac02afe3e1a866 /tools | |
| parent | d4bb9b42e7e525c3b447f6cea74f2867789c3bc6 (diff) | |
| parent | e03e697549f0981d38a3e2a5c6241e0e305ade40 (diff) | |
| download | mruby-d9e15a02a70992de0bbb7ddcf035d4ccc78c7a2e.tar.gz mruby-d9e15a02a70992de0bbb7ddcf035d4ccc78c7a2e.zip | |
Merge branch 'masuidrive-new_mrb_format'
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/mrbc/mrbc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/mrbc/mrbc.c b/tools/mrbc/mrbc.c index 09ab2ca1d..6535d5636 100644 --- a/tools/mrbc/mrbc.c +++ b/tools/mrbc/mrbc.c @@ -209,10 +209,10 @@ main(int argc, char **argv) return EXIT_SUCCESS; } if (args.initname) { - n = mrb_bdump_irep(mrb, n, args.wfp, args.initname); + n = mrb_dump_irep_cfunc(mrb, n, args.wfp, args.initname); } else { - n = mrb_dump_irep(mrb, n, args.wfp); + n = mrb_dump_irep_binary(mrb, n, args.wfp); } cleanup(mrb, &args); |
