@@ -164,12 +164,12 @@ extern const struct cl_var cl_vars[];
164164extern const char * const lang_names [];
165165extern const unsigned int cl_lang_count ;
166166
167- #define CL_PARAMS (1U << 16 ) /* Fake entry. Used to display --param info with --help. */
168- #define CL_WARNING (1U << 17 ) /* Enables an (optional) warning message. */
169- #define CL_OPTIMIZATION (1U << 18 ) /* Enables an (optional) optimization. */
170- #define CL_DRIVER (1U << 19 ) /* Driver option. */
171- #define CL_TARGET (1U << 20 ) /* Target-specific option. */
172- #define CL_COMMON (1U << 21 ) /* Language-independent. */
167+ #define CL_PARAMS (1U << 17 ) /* Fake entry. Used to display --param info with --help. */
168+ #define CL_WARNING (1U << 18 ) /* Enables an (optional) warning message. */
169+ #define CL_OPTIMIZATION (1U << 19 ) /* Enables an (optional) optimization. */
170+ #define CL_DRIVER (1U << 20 ) /* Driver option. */
171+ #define CL_TARGET (1U << 21 ) /* Target-specific option. */
172+ #define CL_COMMON (1U << 22 ) /* Language-independent. */
173173
174174#define CL_MIN_OPTION_CLASS CL_PARAMS
175175#define CL_MAX_OPTION_CLASS CL_COMMON
@@ -179,11 +179,11 @@ extern const unsigned int cl_lang_count;
179179 This distinction is important because --help will not list options
180180 which only have these higher bits set. */
181181
182- #define CL_JOINED (1U << 22 ) /* If takes joined argument. */
183- #define CL_SEPARATE (1U << 23 ) /* If takes a separate argument. */
184- #define CL_UNDOCUMENTED (1U << 24 ) /* Do not output with --help. */
185- #define CL_NO_DWARF_RECORD (1U << 25 ) /* Do not add to producer string. */
186- #define CL_PCH_IGNORE (1U << 26 ) /* Do compare state for pch. */
182+ #define CL_JOINED (1U << 23 ) /* If takes joined argument. */
183+ #define CL_SEPARATE (1U << 24 ) /* If takes a separate argument. */
184+ #define CL_UNDOCUMENTED (1U << 25 ) /* Do not output with --help. */
185+ #define CL_NO_DWARF_RECORD (1U << 26 ) /* Do not add to producer string. */
186+ #define CL_PCH_IGNORE (1U << 27 ) /* Do compare state for pch. */
187187
188188/* Flags for an enumerated option argument. */
189189#define CL_ENUM_CANONICAL (1 << 0) /* Canonical for this value. */
0 commit comments