We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
jit_exec
1 parent c568944 commit b260fd8Copy full SHA for b260fd8
1 file changed
vm.c
@@ -561,6 +561,7 @@ zjit_compile(rb_execution_context_t *ec)
561
562
static inline void zjit_materialize_frames(rb_control_frame_t *cfp);
563
564
+#if USE_YJIT || USE_ZJIT
565
// Execute JIT code compiled by yjit_compile() or zjit_compile()
566
static inline VALUE
567
jit_exec(rb_execution_context_t *ec)
@@ -595,7 +596,6 @@ jit_exec(rb_execution_context_t *ec)
595
596
return Qundef;
597
}
598
-#if USE_YJIT || USE_ZJIT
599
// Generate JIT code that supports the following kind of ISEQ entry:
600
// * The first ISEQ pushed by vm_exec_handle_exception. The frame would
601
// point to a location specified by a catch table, and it doesn't have
0 commit comments