From ef5b1d19c1573290bcf9d5b33bf12656825d2e3b Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Sun, 6 Aug 2023 13:25:23 +0900 Subject: [PATCH] Turn `jit_exec` and `jit_compile` into macros if disabled --- vm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vm.c b/vm.c index 325ab9935e..32cdd48425 100644 --- a/vm.c +++ b/vm.c @@ -421,8 +421,8 @@ jit_exec(rb_execution_context_t *ec) } } #else -static inline rb_jit_func_t jit_compile(rb_execution_context_t *ec) { return 0; } -RBIMPL_ATTR_MAYBE_UNUSED() static inline VALUE jit_exec(rb_execution_context_t *ec) { return Qundef; } +# define jit_compile(ec) ((rb_jit_func_t)0) +# define jit_exec(ec) Qundef #endif #include "vm_insnhelper.c"