diff options
author | Takashi Kokubun <[email protected]> | 2022-12-01 07:59:56 -0800 |
---|---|---|
committer | GitHub <[email protected]> | 2022-12-01 10:59:56 -0500 |
commit | 2c939458cab06b4fda09b55a57b8bac30efe6b17 (patch) | |
tree | 78f2509fe19c8dda9dc5c2f2d0dcf10d739554cb /yjit/bindgen | |
parent | 5872fd6f6cc5ddde33df94fb11e773eeb653e55e (diff) |
YJIT: Reorder branches for Fixnum opt_case_dispatch (#6841)
* YJIT: Reorder branches for Fixnum opt_case_dispatch
Co-authored-by: Maxime Chevalier-Boisvert <[email protected]>
Co-authored-by: Alan Wu <[email protected]>
* YJIT: Don't support too large values
Co-authored-by: Maxime Chevalier-Boisvert <[email protected]>
Co-authored-by: Alan Wu <[email protected]>
Notes
Notes:
Merged-By: maximecb <[email protected]>
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 9afba864d2..ffcc148685 100644 --- a/yjit/bindgen/src/main.rs +++ b/yjit/bindgen/src/main.rs @@ -105,6 +105,7 @@ fn main() { .allowlist_function("rb_hash_aset") .allowlist_function("rb_hash_aref") .allowlist_function("rb_hash_bulk_insert") + .allowlist_function("rb_hash_stlike_lookup") // From include/ruby/internal/intern/array.h .allowlist_function("rb_ary_new_capa") |