summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakashi Kokubun <[email protected]>2024-07-18 13:03:08 -0700
committerTakashi Kokubun <[email protected]>2024-07-18 13:03:17 -0700
commit8df74deab1a4b39458835f7ea0d57137b91a3466 (patch)
tree92edee938a711b2bdc10cc2d60fbb5e82e0fa395
parent2de8b5b8054f311c4cee112dcab5208b66cc62a4 (diff)
YJIT: Tweak a comment a little [ci skip]
-rw-r--r--yjit/Cargo.toml4
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 = []