summaryrefslogtreecommitdiff
path: root/vm_core.h
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2022-08-19 23:57:17 -0700
committerGitHub <noreply@github.com>2022-08-19 23:57:17 -0700
commit485019c2bd02794b484500c78919b0d1230e4a84 (patch)
tree7b4637f8cf52967b6cbb444c07edb17c38875126 /vm_core.h
parentfc5382d46524bdf901efc8d15ef9faf14bea3ad1 (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 <takashikkbn@gmail.com>
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm_core.h b/vm_core.h
index 717f116800..45ec111155 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -489,7 +489,7 @@ struct rb_iseq_constant_body {
/* The following fields are MJIT related info. */
VALUE (*jit_func)(struct rb_execution_context_struct *,
struct rb_control_frame_struct *); /* function pointer for loaded native code */
- long unsigned total_calls; /* number of total calls with `mjit_exec()` */
+ long unsigned total_calls; /* number of total calls with `jit_exec()` */
struct rb_mjit_unit *jit_unit;
#endif