summaryrefslogtreecommitdiffhomepage
path: root/tools/mrbc/mrbc.c
diff options
context:
space:
mode:
authorYukihiro Matz Matsumoto <[email protected]>2013-03-27 11:32:54 +0900
committerYukihiro Matz Matsumoto <[email protected]>2013-03-27 11:32:54 +0900
commitd9e15a02a70992de0bbb7ddcf035d4ccc78c7a2e (patch)
treea2aabd8eac8f8e3fd26be9f4d4ac02afe3e1a866 /tools/mrbc/mrbc.c
parentd4bb9b42e7e525c3b447f6cea74f2867789c3bc6 (diff)
parente03e697549f0981d38a3e2a5c6241e0e305ade40 (diff)
downloadmruby-d9e15a02a70992de0bbb7ddcf035d4ccc78c7a2e.tar.gz
mruby-d9e15a02a70992de0bbb7ddcf035d4ccc78c7a2e.zip
Merge branch 'masuidrive-new_mrb_format'
Diffstat (limited to 'tools/mrbc/mrbc.c')
-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 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);