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 /yjit/bindgen | |
parent | f0224adf2f6ec5c1a9c77001bfbfdae9eb93f5fc (diff) |
YJIT: Support concattoarray and pushtoarray (#9708)
Diffstat (limited to 'yjit/bindgen')
-rw-r--r-- | yjit/bindgen/src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/yjit/bindgen/src/main.rs b/yjit/bindgen/src/main.rs index 45874f28a1..df9bb4d727 100644 --- a/yjit/bindgen/src/main.rs +++ b/yjit/bindgen/src/main.rs @@ -133,6 +133,7 @@ fn main() { .allowlist_function("rb_ary_new_capa") .allowlist_function("rb_ary_store") .allowlist_function("rb_ary_resurrect") + .allowlist_function("rb_ary_cat") .allowlist_function("rb_ary_clear") .allowlist_function("rb_ary_dup") .allowlist_function("rb_ary_push") |