From fe9ebb245644a38392fd26b5ec18efd8e549b154 Mon Sep 17 00:00:00 2001 From: Jean Boussier Date: Wed, 2 Apr 2025 17:41:33 +0200 Subject: [PATCH] vm_core.h: unify YJIT ifdefs --- vm_core.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/vm_core.h b/vm_core.h index d9159f5ccf..c5c0c05b6d 100644 --- a/vm_core.h +++ b/vm_core.h @@ -539,16 +539,10 @@ struct rb_iseq_constant_body { rb_jit_func_t jit_entry; // Number of calls on jit_exec() long unsigned jit_entry_calls; -#endif - -#if USE_YJIT // Function pointer for JIT code on jit_exec_exception() rb_jit_func_t jit_exception; // Number of calls on jit_exec_exception() long unsigned jit_exception_calls; -#endif - -#if USE_YJIT // YJIT stores some data on each iseq. void *yjit_payload; // Used to estimate how frequently this ISEQ gets called