summaryrefslogtreecommitdiff
path: root/mjit.h
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2022-11-14 23:38:52 -0800
committerGitHub <noreply@github.com>2022-11-14 23:38:52 -0800
commitd15d1c01c28f63888475f8016adbc8b4f982b573 (patch)
tree81db7a029619646885607483de43f39303b74fbe /mjit.h
parentc75de1e3304e804be9c073940f396c8a506a005f (diff)
Rename --mjit-min-calls to --mjit-call-threshold (#6731)
for consistency with YJIT
Notes
Notes: Merged-By: k0kubun <takashikkbn@gmail.com>
Diffstat (limited to 'mjit.h')
-rw-r--r--mjit.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/mjit.h b/mjit.h
index 7b5ca54c6f..536ac9fa91 100644
--- a/mjit.h
+++ b/mjit.h
@@ -52,7 +52,7 @@ struct mjit_options {
// If true, all ISeqs are synchronously compiled. For testing.
bool wait;
// Number of calls to trigger JIT compilation. For testing.
- unsigned int min_calls;
+ unsigned int call_threshold;
// Force printing info about MJIT work of level VERBOSE or
// less. 0=silence, 1=medium, 2=verbose.
int verbose;