aboutsummaryrefslogtreecommitdiff
path: root/gcc/opts.h
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2010-08-16 11:17:07 +0100
committerJoseph Myers <jsm28@gcc.gnu.org>2010-08-16 11:17:07 +0100
commitc878765bbf32e3c3505417771f94015da69a33b8 (patch)
tree62c0d7f7821118115c0a4344974133ad19963247 /gcc/opts.h
parent603349bf3ddd56a90ad8091a41038f0c38eb4838 (diff)
downloadgcc-c878765bbf32e3c3505417771f94015da69a33b8.zip
gcc-c878765bbf32e3c3505417771f94015da69a33b8.tar.gz
gcc-c878765bbf32e3c3505417771f94015da69a33b8.tar.bz2
options.texi (NoDriverArg): Document.
* doc/options.texi (NoDriverArg): Document. * gcc.c (cpp_unique_options): Generate -MD and -MMD instead of -MDX and -MMDX. * opt-functions.awk (switch_flags): Handle NoDriverArg. * opts-common.c (decode_cmdline_option): Ignore CL_SEPARATE marking for CL_NO_DRIVER_ARG options when in the driver. * opts.h (CL_NO_DRIVER_ARG): Define. (CL_PARAMS, CL_WARNING, CL_OPTIMIZATION, CL_DRIVER, CL_TARGET, CL_COMMON): Update values. c-family: * c.opt (MDX): Change back to MD. Mark NoDriverArg instead of RejectDriver. (MMDX): Change back to MMD. Mark NoDriverArg instead of RejectDriver. * c-opts.c (c_common_handle_option): Use OPT_MD and OPT_MMD instead of OPT_MDX and OPT_MMDX. fortran: * lang.opt (MDX): Change back to MD. Mark NoDriverArg instead of RejectDriver. (MMDX): Change back to MMD. Mark NoDriverArg instead of RejectDriver. * cpp.c (gfc_cpp_handle_option): Use OPT_MD and OPT_MMD instead of OPT_MDX and OPT_MMDX. From-SVN: r163280
Diffstat (limited to 'gcc/opts.h')
-rw-r--r--gcc/opts.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/gcc/opts.h b/gcc/opts.h
index 18dfdc2..4bfa7c1 100644
--- a/gcc/opts.h
+++ b/gcc/opts.h
@@ -67,12 +67,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 << 15) /* Fake entry. Used to display --param info with --help. */
-#define CL_WARNING (1 << 16) /* Enables an (optional) warning message. */
-#define CL_OPTIMIZATION (1 << 17) /* Enables an (optional) optimization. */
-#define CL_DRIVER (1 << 18) /* Driver option. */
-#define CL_TARGET (1 << 19) /* Target-specific option. */
-#define CL_COMMON (1 << 20) /* Language-independent. */
+#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_MIN_OPTION_CLASS CL_PARAMS
#define CL_MAX_OPTION_CLASS CL_COMMON
@@ -82,6 +82,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_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. */
#define CL_DISABLED (1 << 23) /* Disabled in this configuration. */