summaryrefslogtreecommitdiff
path: root/vm.c
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2022-11-13 14:41:08 -0800
committerTakashi Kokubun <takashikkbn@gmail.com>2022-11-13 14:41:08 -0800
commite377875cff5dd93758296180c3bd6a35c3bbbc12 (patch)
treeebb8f40d0931d0b48d2d4068973c98ea7ee3b47a /vm.c
parent68e05234848e8cd0dae7ba9f27a17f9220236fba (diff)
s/mjit_func_t/jit_func_t/
Diffstat (limited to 'vm.c')
-rw-r--r--vm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm.c b/vm.c
index b441d70716..87c6b47825 100644
--- a/vm.c
+++ b/vm.c
@@ -438,7 +438,7 @@ jit_exec(rb_execution_context_t *ec)
if (!(mjit_call_p || yjit_enabled))
return Qundef;
- mjit_func_t func = body->jit_func;
+ jit_func_t func = body->jit_func;
// YJIT tried compiling this function once before and couldn't do
// it, so return Qundef so the interpreter handles it.