diff options
author | Takashi Kokubun <[email protected]> | 2024-01-25 16:22:27 -0800 |
---|---|---|
committer | GitHub <[email protected]> | 2024-01-26 00:22:27 +0000 |
commit | 7567e4e1e1e8029b19cda81b612f2d1a0c27cb9f (patch) | |
tree | 71d1c6b29b144010033dadefdff176e36ff0396f /yjit/bindgen | |
parent | 30b4070ffac3a66904a6fd74f4cb4860dd20ac37 (diff) |
YJIT: Fix exits on splatkw instruction (#9711)
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 df9bb4d727..2c264287bc 100644 --- a/yjit/bindgen/src/main.rs +++ b/yjit/bindgen/src/main.rs @@ -119,6 +119,7 @@ fn main() { .allowlist_function("rb_hash_new_with_size") .allowlist_function("rb_hash_resurrect") .allowlist_function("rb_hash_stlike_foreach") + .allowlist_function("rb_to_hash_type") // From include/ruby/st.h .allowlist_type("st_retval") |