diff options
author | Takashi Kokubun <[email protected]> | 2024-01-25 13:45:58 -0800 |
---|---|---|
committer | GitHub <[email protected]> | 2024-01-25 21:45:58 +0000 |
commit | 2034e6ad5a22fa1dcde428751ae97a29ba434d7e (patch) | |
tree | 52183e2cd056c405423714863aa56060a703357b /vm_insnhelper.c | |
parent | f0224adf2f6ec5c1a9c77001bfbfdae9eb93f5fc (diff) |
YJIT: Support concattoarray and pushtoarray (#9708)
Diffstat (limited to 'vm_insnhelper.c')
-rw-r--r-- | vm_insnhelper.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/vm_insnhelper.c b/vm_insnhelper.c index 55e79acdd8..edce1fbe41 100644 --- a/vm_insnhelper.c +++ b/vm_insnhelper.c @@ -5237,6 +5237,12 @@ rb_vm_concat_array(VALUE ary1, VALUE ary2st) return vm_concat_array(ary1, ary2st); } +VALUE +rb_vm_concat_to_array(VALUE ary1, VALUE ary2st) +{ + return vm_concat_to_array(ary1, ary2st); +} + static VALUE vm_splat_array(VALUE flag, VALUE ary) { |