From 6b3a97d74b3b6febb7e70ae5359831c712ae57fa Mon Sep 17 00:00:00 2001 From: Aaron Patterson Date: Sun, 16 Feb 2025 13:06:56 -0800 Subject: [PATCH] Remove undefined function from bindgen `rb_get_iseq_body_total_calls` was removed in cd8d20cd1fbcf9bf9d438b306beb65b2417fcc04, but it's still in the YJIT bindgen file. This commit just removes it from bindgen --- yjit/bindgen/src/main.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/yjit/bindgen/src/main.rs b/yjit/bindgen/src/main.rs index e8f88cef64..8376b593b2 100644 --- a/yjit/bindgen/src/main.rs +++ b/yjit/bindgen/src/main.rs @@ -421,7 +421,6 @@ fn main() { .allowlist_function("rb_get_def_iseq_ptr") .allowlist_function("rb_get_def_bmethod_proc") .allowlist_function("rb_iseq_encoded_size") - .allowlist_function("rb_get_iseq_body_total_calls") .allowlist_function("rb_get_iseq_body_local_iseq") .allowlist_function("rb_get_iseq_body_parent_iseq") .allowlist_function("rb_get_iseq_body_iseq_encoded")