Shrink ruby_cmdline_options_t a bit

This commit is contained in:
Nobuyoshi Nakada 2023-07-13 16:58:48 +09:00
parent 1e7b67f733
commit 1c2a4d9682
Notes: git 2023-07-13 13:59:46 +00:00
2 changed files with 15 additions and 9 deletions

View file

@ -27,7 +27,8 @@ typedef struct ruby_cmdline_options {
struct rb_rjit_options rjit;
#endif
int sflag, xflag;
signed int sflag: 2;
unsigned int xflag: 1;
unsigned int warning: 1;
unsigned int verbose: 1;
unsigned int do_loop: 1;