summaryrefslogtreecommitdiff
path: root/rjit_c.rb
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2023-04-03 22:52:38 -0700
committerTakashi Kokubun <takashikkbn@gmail.com>2023-04-04 00:35:29 -0700
commit19506650efeb8b19cea3f72d3f95547c5cbc3659 (patch)
treebe5eacc769e42bd350dd5420e265d052f168c9dc /rjit_c.rb
parent2c560b976ed86730dfa305266fcc69033f6790cc (diff)
downloadruby-19506650efeb8b19cea3f72d3f95547c5cbc3659.tar.gz
RJIT: Add --rjit-verify-ctx option
Diffstat (limited to 'rjit_c.rb')
-rw-r--r--rjit_c.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/rjit_c.rb b/rjit_c.rb
index fa4ea2dddc..843ee53295 100644
--- a/rjit_c.rb
+++ b/rjit_c.rb
@@ -1316,6 +1316,7 @@ module RubyVM::RJIT # :nodoc: all
stats: [self._Bool, Primitive.cexpr!("OFFSETOF((*((struct rb_rjit_options *)NULL)), stats)")],
trace_exits: [self._Bool, Primitive.cexpr!("OFFSETOF((*((struct rb_rjit_options *)NULL)), trace_exits)")],
dump_disasm: [self._Bool, Primitive.cexpr!("OFFSETOF((*((struct rb_rjit_options *)NULL)), dump_disasm)")],
+ verify_ctx: [self._Bool, Primitive.cexpr!("OFFSETOF((*((struct rb_rjit_options *)NULL)), verify_ctx)")],
pause: [self._Bool, Primitive.cexpr!("OFFSETOF((*((struct rb_rjit_options *)NULL)), pause)")],
)
end