summaryrefslogtreecommitdiff
path: root/ruby.c
diff options
context:
space:
mode:
Diffstat (limited to 'ruby.c')
-rw-r--r--ruby.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/ruby.c b/ruby.c
index 8ac7844375..c7bc2ad7a8 100644
--- a/ruby.c
+++ b/ruby.c
@@ -1036,7 +1036,10 @@ setup_yjit_options(const char *s, struct rb_yjit_options *yjit_opt)
if (*s != '-') return;
const size_t l = strlen(++s);
- if (opt_match_arg(s, l, "call-threshold")) {
+ if (opt_match_arg(s, l, "exec-mem-size")) {
+ yjit_opt->exec_mem_size = atoi(s + 1);
+ }
+ else if (opt_match_arg(s, l, "call-threshold")) {
yjit_opt->call_threshold = atoi(s + 1);
}
else if (opt_match_arg(s, l, "version-limit")) {