summaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorYuichiro MASUI <[email protected]>2013-03-02 23:40:34 +0900
committerYuichiro MASUI <[email protected]>2013-03-08 03:14:21 +0900
commit284258367881d74f784485c2e5d282f4f5d490a5 (patch)
treea160d3c745f14e600edaed724f67d3107b362049 /tools
parent7d47096434994d9eb9712546879e3b52b04d3443 (diff)
downloadmruby-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.c4
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);