diff options
author | Takashi Kokubun <[email protected]> | 2023-01-06 11:49:59 -0800 |
---|---|---|
committer | GitHub <[email protected]> | 2023-01-06 11:49:59 -0800 |
commit | 00d58afb5d7f3cf3a553e1e8f75f31e4d8781fe7 (patch) | |
tree | 90a380a0156beac85b6c2f7f8439a819ee9d2918 /yjit/bindgen/src | |
parent | 311ce9173330060ec805ef54887003dd1b447f15 (diff) |
YJIT: Make iseq_get_location consistent with iseq.c (#7074)
* YJIT: Make iseq_get_location consistent with iseq.c
* YJIT: Call it "YJIT entry point"
Co-authored-by: Maxime Chevalier-Boisvert <[email protected]>
Co-authored-by: Maxime Chevalier-Boisvert <[email protected]>
Notes
Notes:
Merged-By: k0kubun <[email protected]>
Diffstat (limited to 'yjit/bindgen/src')
-rw-r--r-- | yjit/bindgen/src/main.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/yjit/bindgen/src/main.rs b/yjit/bindgen/src/main.rs index 996d7fa1c0..23b32afbd0 100644 --- a/yjit/bindgen/src/main.rs +++ b/yjit/bindgen/src/main.rs @@ -318,7 +318,8 @@ fn main() { // From iseq.h .allowlist_function("rb_vm_insn_addr2opcode") .allowlist_function("rb_iseqw_to_iseq") - .allowlist_function("rb_iseq_method_name") + .allowlist_function("rb_iseq_label") + .allowlist_function("rb_iseq_line_no") // From builtin.h .allowlist_type("rb_builtin_function.*") |