diff options
author | Takashi Kokubun <[email protected]> | 2022-08-19 23:57:17 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2022-08-19 23:57:17 -0700 |
commit | 485019c2bd02794b484500c78919b0d1230e4a84 (patch) | |
tree | 7b4637f8cf52967b6cbb444c07edb17c38875126 /vm_eval.c | |
parent | fc5382d46524bdf901efc8d15ef9faf14bea3ad1 (diff) |
Rename mjit_exec to jit_exec (#6262)
* Rename mjit_exec to jit_exec
* Rename mjit_exec_slowpath to mjit_check_iseq
* Remove mjit_exec references from comments
Notes
Notes:
Merged-By: k0kubun <[email protected]>
Diffstat (limited to 'vm_eval.c')
-rw-r--r-- | vm_eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -20,7 +20,7 @@ static inline VALUE vm_yield_with_cref(rb_execution_context_t *ec, int argc, con static inline VALUE vm_yield(rb_execution_context_t *ec, int argc, const VALUE *argv, int kw_splat); static inline VALUE vm_yield_with_block(rb_execution_context_t *ec, int argc, const VALUE *argv, VALUE block_handler, int kw_splat); static inline VALUE vm_yield_force_blockarg(rb_execution_context_t *ec, VALUE args); -VALUE vm_exec(rb_execution_context_t *ec, bool mjit_enable_p); +VALUE vm_exec(rb_execution_context_t *ec, bool jit_enable_p); static void vm_set_eval_stack(rb_execution_context_t * th, const rb_iseq_t *iseq, const rb_cref_t *cref, const struct rb_block *base_block); static int vm_collect_local_variables_in_heap(const VALUE *dfp, const struct local_var_list *vars); |