diff options
author | Aaron Patterson <[email protected]> | 2022-06-27 16:30:32 -0700 |
---|---|---|
committer | Aaron Patterson <[email protected]> | 2022-06-29 16:21:48 -0700 |
commit | 8d157bc80614be1b222ca2158d211399c40d151c (patch) | |
tree | 793b4c9a8074826da5ca39e6a5b16bd87b6f9022 /iseq.h | |
parent | e3ab525f699b5191db70ef095b3d110890441940 (diff) |
Move function to `static inline` so we don't have leaked globals
This function shouldn't leak and is only needed during instruction
assembly
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/6069
Diffstat (limited to 'iseq.h')
-rw-r--r-- | iseq.h | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -169,7 +169,6 @@ void rb_iseq_init_trace(rb_iseq_t *iseq); int rb_iseq_add_local_tracepoint_recursively(const rb_iseq_t *iseq, rb_event_flag_t turnon_events, VALUE tpval, unsigned int target_line, bool target_bmethod); int rb_iseq_remove_local_tracepoint_recursively(const rb_iseq_t *iseq, VALUE tpval); const rb_iseq_t *rb_iseq_load_iseq(VALUE fname); -union iseq_inline_storage_entry *ISEQ_IS_ENTRY_START(const struct rb_iseq_constant_body *body, char op_type); #if VM_INSN_INFO_TABLE_IMPL == 2 unsigned int *rb_iseq_insns_info_decode_positions(const struct rb_iseq_constant_body *body); |