diff options
author | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-03-30 19:42:51 +0000 |
---|---|---|
committer | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-03-30 19:42:51 +0000 |
commit | 4e775b8e0dd58553636f606e1482306b72128170 (patch) | |
tree | 8d690cb4ef7d285476b7a0854fa4a67ca23779ba /gcc/opts.h | |
parent | f6a02c024f1deb1fbe6f7e000e38f00da09b9732 (diff) | |
download | gcc-4e775b8e0dd58553636f606e1482306b72128170.tar.gz |
* doc/options.texi (NegativeAlias): Document.
(Alias): Mention NegativeAlias.
* opt-functions.awk: Handle NegativeAlias.
* optc-gen.awk: Disallow NegativeAlias with multiple Alias
arguments.
* opts-common.c (decode_cmdline_option): Handle CL_NEGATIVE_ALIAS.
* opts.h (CL_NEGATIVE_ALIAS): Define.
* config/rs6000/rs6000.c (rs6000_parse_yes_no_option): Remove.
(rs6000_handle_option): Don't handle OPT_mvrsave_, OPT_misel_ and
OPT_mspe_.
* config/rs6000/rs6000.opt (mvrsave=, misel=, mspe=): Replace with
Alias entries.
* config/rs6000/t-spe (MULTILIB_OPTIONS, MULTILIB_EXCEPTIONS): Use
mno-spe and mno-isel instead of mspe=no and -misel=no.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@171745 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/opts.h')
-rw-r--r-- | gcc/opts.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/opts.h b/gcc/opts.h index 0d58bae25f2..491177898c6 100644 --- a/gcc/opts.h +++ b/gcc/opts.h @@ -115,6 +115,7 @@ extern const unsigned int cl_lang_count; #define CL_MISSING_OK (1U << 28) /* Missing argument OK (joined). */ #define CL_UINTEGER (1U << 29) /* Argument is an integer >=0. */ #define CL_UNDOCUMENTED (1U << 30) /* Do not output with --help. */ +#define CL_NEGATIVE_ALIAS (1U << 31) /* Alias to negative form of option. */ /* Flags for an enumerated option argument. */ #define CL_ENUM_CANONICAL (1 << 0) /* Canonical for this value. */ |