summaryrefslogtreecommitdiff
path: root/internal/cmdlineopt.h
diff options
context:
space:
mode:
Diffstat (limited to 'internal/cmdlineopt.h')
-rw-r--r--internal/cmdlineopt.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/internal/cmdlineopt.h b/internal/cmdlineopt.h
index e79b993345..aed209e2a2 100644
--- a/internal/cmdlineopt.h
+++ b/internal/cmdlineopt.h
@@ -1,7 +1,6 @@
#ifndef INTERNAL_CMDLINEOPT_H /*-*-C-*-vi:se ft=c:*/
#define INTERNAL_CMDLINEOPT_H
-#include "rjit.h"
#include "yjit.h"
typedef struct {
@@ -24,9 +23,6 @@ typedef struct ruby_cmdline_options {
ruby_features_t warn;
unsigned int dump;
long backtrace_length_limit;
-#if USE_RJIT
- struct rb_rjit_options rjit;
-#endif
const char *crash_report;
@@ -43,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 {