diff options
-rw-r--r-- | yjit/Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yjit/Cargo.toml b/yjit/Cargo.toml index 182dccb7f6..715321b6dc 100644 --- a/yjit/Cargo.toml +++ b/yjit/Cargo.toml @@ -22,8 +22,8 @@ capstone = { version = "0.12.0", optional = true } [features] # Support --yjit-dump-disasm and RubyVM::YJIT.disasm using libcapstone. disasm = ["capstone"] -# Modify generated code for assertions, e.g. and poison value in PC -# for C method calls and stack canary. This is managed separately +# Modify generated code for runtime checks, e.g. poison value in PC +# for C method calls, and stack canary. This is managed separately # from cfg!(debug_assertions) so that we can see disasm of the code # that would run in the release mode. runtime_checks = [] |