summaryrefslogtreecommitdiff
path: root/rjit.c
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2024-03-12 13:44:47 -0700
committerTakashi Kokubun <takashikkbn@gmail.com>2024-03-12 13:44:48 -0700
commit22708be0d71ab5ed5d28d7951fcf670da38c366f (patch)
treefcdbf8974c3c1790e53247809e1893ba835e0146 /rjit.c
parent19da3b4ecfb81d937a1bf80e023ebe757111bcb7 (diff)
Revisions for #10198
This fixes some inconsistencies introduced by that PR.
Diffstat (limited to 'rjit.c')
-rw-r--r--rjit.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/rjit.c b/rjit.c
index 5f8ac4b2bd..72660394b3 100644
--- a/rjit.c
+++ b/rjit.c
@@ -153,12 +153,12 @@ rb_rjit_setup_options(const char *s, struct rb_rjit_options *rjit_opt)
#define M(shortopt, longopt, desc) RUBY_OPT_MESSAGE(shortopt, longopt, desc)
const struct ruby_opt_message rb_rjit_option_messages[] = {
- M("--rjit-exec-mem-size=num", "", "Size of executable memory block in MiB (default: " STRINGIZE(DEFAULT_EXEC_MEM_SIZE) ")"),
- M("--rjit-call-threshold=num", "", "Number of calls to trigger JIT (default: " STRINGIZE(DEFAULT_CALL_THRESHOLD) ")"),
- M("--rjit-stats", "", "Enable collecting RJIT statistics"),
- M("--rjit-disable", "", "Disable RJIT for lazily enabling it with RubyVM::RJIT.enable"),
- M("--rjit-trace", "", "Allow TracePoint during JIT compilation"),
- M("--rjit-trace-exits", "", "Trace side exit locations"),
+ M("--rjit-exec-mem-size=num", "", "Size of executable memory block in MiB (default: " STRINGIZE(DEFAULT_EXEC_MEM_SIZE) ")."),
+ M("--rjit-call-threshold=num", "", "Number of calls to trigger JIT (default: " STRINGIZE(DEFAULT_CALL_THRESHOLD) ")."),
+ M("--rjit-stats", "", "Enable collecting RJIT statistics."),
+ M("--rjit-disable", "", "Disable RJIT for lazily enabling it with RubyVM::RJIT.enable."),
+ M("--rjit-trace", "", "Allow TracePoint during JIT compilation."),
+ M("--rjit-trace-exits", "", "Trace side exit locations."),
#ifdef HAVE_LIBCAPSTONE
M("--rjit-dump-disasm", "", "Dump all JIT code"),
#endif