diff options
author | Takashi Kokubun <[email protected]> | 2022-11-13 14:41:08 -0800 |
---|---|---|
committer | Takashi Kokubun <[email protected]> | 2022-11-13 14:41:08 -0800 |
commit | e377875cff5dd93758296180c3bd6a35c3bbbc12 (patch) | |
tree | ebb8f40d0931d0b48d2d4068973c98ea7ee3b47a /vm.c | |
parent | 68e05234848e8cd0dae7ba9f27a17f9220236fba (diff) |
s/mjit_func_t/jit_func_t/
Diffstat (limited to 'vm.c')
-rw-r--r-- | vm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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. |