Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion vm.c
Original file line number Diff line number Diff line change
Expand Up @@ -561,6 +561,7 @@ zjit_compile(rb_execution_context_t *ec)

static inline void zjit_materialize_frames(rb_control_frame_t *cfp);

#if USE_YJIT || USE_ZJIT
// Execute JIT code compiled by yjit_compile() or zjit_compile()
static inline VALUE
jit_exec(rb_execution_context_t *ec)
Expand Down Expand Up @@ -595,7 +596,6 @@ jit_exec(rb_execution_context_t *ec)
return Qundef;
}

#if USE_YJIT || USE_ZJIT
// Generate JIT code that supports the following kind of ISEQ entry:
// * The first ISEQ pushed by vm_exec_handle_exception. The frame would
// point to a location specified by a catch table, and it doesn't have
Expand Down Expand Up @@ -652,6 +652,7 @@ jit_exec_exception(rb_execution_context_t *ec)
}
#else
# define jit_compile_exception(ec) ((rb_jit_func_t)0)
# define jit_exec(ec) Qundef
# define jit_exec_exception(ec) Qundef
#endif

Expand Down