mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
ZJIT: Prepare for sharing JIT hooks with ZJIT (#14044)
This commit is contained in:
parent
4263c49d1c
commit
2cd10de330
20 changed files with 142 additions and 118 deletions
|
@ -23,9 +23,6 @@ typedef struct ruby_cmdline_options {
|
|||
ruby_features_t warn;
|
||||
unsigned int dump;
|
||||
long backtrace_length_limit;
|
||||
#if USE_ZJIT
|
||||
void *zjit;
|
||||
#endif
|
||||
|
||||
const char *crash_report;
|
||||
|
||||
|
@ -42,6 +39,9 @@ typedef struct ruby_cmdline_options {
|
|||
#if USE_YJIT
|
||||
unsigned int yjit: 1;
|
||||
#endif
|
||||
#if USE_ZJIT
|
||||
unsigned int zjit: 1;
|
||||
#endif
|
||||
} ruby_cmdline_options_t;
|
||||
|
||||
struct ruby_opt_message {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue