diff options
Diffstat (limited to 'gcc/opts.h')
-rw-r--r-- | gcc/opts.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/gcc/opts.h b/gcc/opts.h index 09e305b225b..ed175e5de4a 100644 --- a/gcc/opts.h +++ b/gcc/opts.h @@ -71,12 +71,12 @@ extern const unsigned int cl_options_count; extern const char *const lang_names[]; extern const unsigned int cl_lang_count; -#define CL_PARAMS (1 << 14) /* Fake entry. Used to display --param info with --help. */ -#define CL_WARNING (1 << 15) /* Enables an (optional) warning message. */ -#define CL_OPTIMIZATION (1 << 16) /* Enables an (optional) optimization. */ -#define CL_DRIVER (1 << 17) /* Driver option. */ -#define CL_TARGET (1 << 18) /* Target-specific option. */ -#define CL_COMMON (1 << 19) /* Language-independent. */ +#define CL_PARAMS (1 << 13) /* Fake entry. Used to display --param info with --help. */ +#define CL_WARNING (1 << 14) /* Enables an (optional) warning message. */ +#define CL_OPTIMIZATION (1 << 15) /* Enables an (optional) optimization. */ +#define CL_DRIVER (1 << 16) /* Driver option. */ +#define CL_TARGET (1 << 17) /* Target-specific option. */ +#define CL_COMMON (1 << 18) /* Language-independent. */ #define CL_MIN_OPTION_CLASS CL_PARAMS #define CL_MAX_OPTION_CLASS CL_COMMON @@ -86,6 +86,7 @@ extern const unsigned int cl_lang_count; This distinction is important because --help will not list options which only have these higher bits set. */ +#define CL_SEPARATE_ALIAS (1 << 19) /* Option is an alias when used with separate argument. */ #define CL_NO_DRIVER_ARG (1 << 20) /* Option takes no argument in the driver. */ #define CL_REJECT_DRIVER (1 << 21) /* Reject this option in the driver. */ #define CL_SAVE (1 << 22) /* Target-specific option for attribute. */ |