diff options
author | Jimmy Miller <jimmy.miller@shopify.com> | 2023-03-13 11:12:23 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-13 11:12:23 -0400 |
commit | 45127c84d992dc0224c59be341e6c652de7edd21 (patch) | |
tree | 1010831e629ac35c6505d1a070b056f7f10911e8 /yjit/src/cruby_bindings.inc.rs | |
parent | 1095baed34dca15b9d8c6c54ea2f89bbaf67fb52 (diff) | |
download | ruby-45127c84d992dc0224c59be341e6c652de7edd21.tar.gz |
YJIT: Handle rest+splat where non-splat < required (#7499)
Diffstat (limited to 'yjit/src/cruby_bindings.inc.rs')
-rw-r--r-- | yjit/src/cruby_bindings.inc.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/yjit/src/cruby_bindings.inc.rs b/yjit/src/cruby_bindings.inc.rs index 0b847211de..18c519f325 100644 --- a/yjit/src/cruby_bindings.inc.rs +++ b/yjit/src/cruby_bindings.inc.rs @@ -1297,6 +1297,7 @@ extern "C" { argv: *mut VALUE, ary: VALUE, ) -> VALUE; + pub fn rb_yjit_rb_ary_subseq_length(ary: VALUE, beg: ::std::os::raw::c_long) -> VALUE; pub fn rb_yarv_fix_mod_fix(recv: VALUE, obj: VALUE) -> VALUE; pub fn rb_yjit_dump_iseq_loc(iseq: *const rb_iseq_t, insn_idx: u32); pub fn rb_FL_TEST(obj: VALUE, flags: VALUE) -> VALUE; |