From ed18093200f94e964a0ad1c91272b3266364198b Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Thu, 16 Mar 2023 10:48:17 -0700 Subject: Fix the JIT-unsupported case --- vm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vm.c b/vm.c index 0f90c9a1e2..959966f562 100644 --- a/vm.c +++ b/vm.c @@ -415,7 +415,7 @@ jit_exec(rb_execution_context_t *ec) } } #else -static inline jit_func_t jit_compile(rb_execution_context_t *ec) { return 0; } +static inline rb_jit_func_t jit_compile(rb_execution_context_t *ec) { return 0; } static inline VALUE jit_exec(rb_execution_context_t *ec) { return Qundef; } #endif -- cgit v1.2.1