diff options
Diffstat (limited to 'gcc/opts.h')
| -rw-r--r-- | gcc/opts.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/opts.h b/gcc/opts.h index 31c6e8e7f31..abb3963e45c 100644 --- a/gcc/opts.h +++ b/gcc/opts.h @@ -36,6 +36,8 @@ extern const unsigned int cl_options_count; #define CL_JOINED (1 << 24) /* If takes joined argument. */ #define CL_SEPARATE (1 << 25) /* If takes a separate argument. */ #define CL_REJECT_NEGATIVE (1 << 26) /* Reject no- form. */ -#define CL_COMMON (1 << 27) /* Language-independent. */ +#define CL_MISSING_OK (1 << 27) /* Missing argument OK (joined). */ +#define CL_UINTEGER (1 << 28) /* Argument is an integer >=0. */ +#define CL_COMMON (1 << 29) /* Language-independent. */ #endif |

