diff options
author | Peter Zhu <[email protected]> | 2023-01-19 14:47:17 -0500 |
---|---|---|
committer | Peter Zhu <[email protected]> | 2023-01-20 08:51:39 -0500 |
commit | 056e7a0154fe4c71eca3726c878bb3da7e4138f8 (patch) | |
tree | 0cc48f743143edbb7801e5dc103b670b7ad62145 /iseq.h | |
parent | 76e3d853ab33d31ab9d5ae6f88b406841e8dbbf2 (diff) |
Make all of the references of iseq movable
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/7156
Diffstat (limited to 'iseq.h')
-rw-r--r-- | iseq.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -186,7 +186,7 @@ VALUE *rb_iseq_original_iseq(const rb_iseq_t *iseq); void rb_iseq_build_from_ary(rb_iseq_t *iseq, VALUE misc, VALUE locals, VALUE args, VALUE exception, VALUE body); -void rb_iseq_mark_insn_storage(struct iseq_compile_data_storage *arena); +void rb_iseq_mark_and_update_insn_storage(struct iseq_compile_data_storage *arena); VALUE rb_iseq_load(VALUE data, VALUE parent, VALUE opt); VALUE rb_iseq_parameters(const rb_iseq_t *iseq, int is_proc); |