From 7030cae969085f2849bc265047397fadff8b97e3 Mon Sep 17 00:00:00 2001 From: Maxime Chevalier-Boisvert Date: Wed, 23 Jun 2021 13:55:34 -0400 Subject: Try running with more YJIT options in CI to surface more bugs --- ruby.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ruby.c') diff --git a/ruby.c b/ruby.c index c7bc2ad7a8..8440969650 100644 --- a/ruby.c +++ b/ruby.c @@ -1042,8 +1042,8 @@ setup_yjit_options(const char *s, struct rb_yjit_options *yjit_opt) 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")) { - yjit_opt->version_limit = atoi(s + 1); + else if (opt_match_arg(s, l, "max-versions")) { + yjit_opt->max_versions = atoi(s + 1); } else if (opt_match_noarg(s, l, "greedy-versioning")) { yjit_opt->greedy_versioning = true; -- cgit v1.2.3