diff options
Diffstat (limited to 'internal/cmdlineopt.h')
| -rw-r--r-- | internal/cmdlineopt.h | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/internal/cmdlineopt.h b/internal/cmdlineopt.h index 71568a8745..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 "mjit.h" #include "yjit.h" typedef struct { @@ -23,11 +22,12 @@ typedef struct ruby_cmdline_options { ruby_features_t features; ruby_features_t warn; unsigned int dump; -#if USE_MJIT - struct mjit_options mjit; -#endif + long backtrace_length_limit; + + const char *crash_report; - int sflag, xflag; + signed int sflag: 2; + unsigned int xflag: 1; unsigned int warning: 1; unsigned int verbose: 1; unsigned int do_loop: 1; @@ -36,6 +36,12 @@ typedef struct ruby_cmdline_options { unsigned int do_split: 1; unsigned int do_search: 1; unsigned int setids: 2; +#if USE_YJIT + unsigned int yjit: 1; +#endif +#if USE_ZJIT + unsigned int zjit: 1; +#endif } ruby_cmdline_options_t; struct ruby_opt_message { |
