1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Fix default --jit-max-cache in ruby --help

changed at 028f1887c2
This commit is contained in:
Kazuhiro NISHIYAMA 2022-01-10 20:17:05 +09:00
parent 65a8d52212
commit c764e368bd
No known key found for this signature in database
GPG key ID: 262ED8DBB4222F7A

2
ruby.c
View file

@ -361,7 +361,7 @@ usage(const char *name, int help, int highlight, int columns)
M("--mjit-wait", "", "Wait until JIT compilation finishes every time (for testing)"),
M("--mjit-save-temps", "", "Save JIT temporary files in $TMP or /tmp (for testing)"),
M("--mjit-verbose=num", "", "Print JIT logs of level num or less to stderr (default: 0)"),
M("--mjit-max-cache=num", "", "Max number of methods to be JIT-ed in a cache (default: 100)"),
M("--mjit-max-cache=num", "", "Max number of methods to be JIT-ed in a cache (default: 10000)"),
M("--mjit-min-calls=num", "", "Number of calls to trigger JIT (for testing, default: 10000)"),
};
static const struct message yjit_options[] = {