diff options
| author | Yuichiro MASUI <[email protected]> | 2013-03-02 23:40:34 +0900 |
|---|---|---|
| committer | Yuichiro MASUI <[email protected]> | 2013-03-08 03:14:21 +0900 |
| commit | 284258367881d74f784485c2e5d282f4f5d490a5 (patch) | |
| tree | a160d3c745f14e600edaed724f67d3107b362049 /tools | |
| parent | 7d47096434994d9eb9712546879e3b52b04d3443 (diff) | |
| download | mruby-284258367881d74f784485c2e5d282f4f5d490a5.tar.gz mruby-284258367881d74f784485c2e5d282f4f5d490a5.zip | |
New mrb format. The detail is in https://github.com/mruby/mruby/issues/944
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 bc551fffc..b68bf0547 100644 --- a/tools/mrbc/mrbc.c +++ b/tools/mrbc/mrbc.c @@ -203,10 +203,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); |
