summaryrefslogtreecommitdiff
path: root/rjit_c.rb
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2023-03-25 01:07:36 -0700
committerTakashi Kokubun <takashikkbn@gmail.com>2023-03-25 01:17:05 -0700
commit9bc2dbd33cd25281fe14d01bbe5b460176db1010 (patch)
treedf9fc7be7cc71f3341b987f25f02c11fcfd7e8cc /rjit_c.rb
parent85a55d3e75fd98e7a0462ad289630d64ff31da84 (diff)
downloadruby-9bc2dbd33cd25281fe14d01bbe5b460176db1010.tar.gz
RJIT: Support optional params on splat
Diffstat (limited to 'rjit_c.rb')
-rw-r--r--rjit_c.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/rjit_c.rb b/rjit_c.rb
index 65a4b3e899..d89453b934 100644
--- a/rjit_c.rb
+++ b/rjit_c.rb
@@ -1278,7 +1278,6 @@ module RubyVM::RJIT # :nodoc: all
send_args_splat: [CType::Immediate.parse("size_t"), Primitive.cexpr!("OFFSETOF((*((struct rb_rjit_runtime_counters *)NULL)), send_args_splat)")],
send_args_splat_not_array: [CType::Immediate.parse("size_t"), Primitive.cexpr!("OFFSETOF((*((struct rb_rjit_runtime_counters *)NULL)), send_args_splat_not_array)")],
send_args_splat_length_not_equal: [CType::Immediate.parse("size_t"), Primitive.cexpr!("OFFSETOF((*((struct rb_rjit_runtime_counters *)NULL)), send_args_splat_length_not_equal)")],
- send_args_splat_opt_num: [CType::Immediate.parse("size_t"), Primitive.cexpr!("OFFSETOF((*((struct rb_rjit_runtime_counters *)NULL)), send_args_splat_opt_num)")],
send_args_splat_arity_error: [CType::Immediate.parse("size_t"), Primitive.cexpr!("OFFSETOF((*((struct rb_rjit_runtime_counters *)NULL)), send_args_splat_arity_error)")],
send_args_splat_ruby2_hash: [CType::Immediate.parse("size_t"), Primitive.cexpr!("OFFSETOF((*((struct rb_rjit_runtime_counters *)NULL)), send_args_splat_ruby2_hash)")],
send_kw_splat: [CType::Immediate.parse("size_t"), Primitive.cexpr!("OFFSETOF((*((struct rb_rjit_runtime_counters *)NULL)), send_kw_splat)")],