diff options
| author | Takashi Kokubun <takashikkbn@gmail.com> | 2023-10-04 10:28:32 -0700 |
|---|---|---|
| committer | Takashi Kokubun <takashikkbn@gmail.com> | 2023-10-04 10:28:32 -0700 |
| commit | f834b1a40db3ae70103ba78c64be2aa18bb9bc79 (patch) | |
| tree | 8a5911b48d6bb7772af806a6d1a3645d14942ff5 | |
| parent | 7db6f448ed9ba6a5c27a750416cb6877711a7c05 (diff) | |
YJIT: Add a comment for YJIT_OPTIONS [ci skip]
| -rw-r--r-- | yjit/src/options.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/yjit/src/options.rs b/yjit/src/options.rs index e8d08aae50..455b3806fb 100644 --- a/yjit/src/options.rs +++ b/yjit/src/options.rs @@ -80,6 +80,7 @@ pub static mut OPTIONS: Options = Options { dump_iseq_disasm: None, }; +/// YJIT option descriptions for `ruby --help`. static YJIT_OPTIONS: [(&str, &str); 8] = [ ("--yjit-stats", "Enable collecting YJIT statistics"), ("--yjit-trace-exits", "Record Ruby source location when exiting from generated code"), |
