From 2c939458cab06b4fda09b55a57b8bac30efe6b17 Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Thu, 1 Dec 2022 07:59:56 -0800 Subject: YJIT: Reorder branches for Fixnum opt_case_dispatch (#6841) * YJIT: Reorder branches for Fixnum opt_case_dispatch Co-authored-by: Maxime Chevalier-Boisvert Co-authored-by: Alan Wu * YJIT: Don't support too large values Co-authored-by: Maxime Chevalier-Boisvert Co-authored-by: Alan Wu --- yjit/bindgen/src/main.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'yjit/bindgen') 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") -- cgit v1.2.1