diff options
author | Joseph Myers <joseph@codesourcery.com> | 2011-03-30 20:42:51 +0100 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2011-03-30 20:42:51 +0100 |
commit | 666a21a2993b36e8c10f2d0759cd7f68811663fb (patch) | |
tree | 8d690cb4ef7d285476b7a0854fa4a67ca23779ba /gcc/opt-functions.awk | |
parent | 0fa4e351537fe6bf253e13e3c3e7b122cbe9468c (diff) | |
download | gcc-666a21a2993b36e8c10f2d0759cd7f68811663fb.zip gcc-666a21a2993b36e8c10f2d0759cd7f68811663fb.tar.gz gcc-666a21a2993b36e8c10f2d0759cd7f68811663fb.tar.bz2 |
options.texi (NegativeAlias): Document.
* 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.
From-SVN: r171745
Diffstat (limited to 'gcc/opt-functions.awk')
-rw-r--r-- | gcc/opt-functions.awk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/opt-functions.awk b/gcc/opt-functions.awk index 9aff0e0..f5f5cd4 100644 --- a/gcc/opt-functions.awk +++ b/gcc/opt-functions.awk @@ -1,4 +1,4 @@ -# Copyright (C) 2003, 2004, 2007, 2008, 2009, 2010 +# Copyright (C) 2003, 2004, 2007, 2008, 2009, 2010, 2011 # Free Software Foundation, Inc. # Contributed by Kelley Cook, June 2004. # Original code from Neil Booth, May 2003. @@ -90,6 +90,7 @@ function switch_flags (flags) test_flag("RejectDriver", flags, " | CL_REJECT_DRIVER") \ test_flag("NoDriverArg", flags, " | CL_NO_DRIVER_ARG") \ test_flag("SeparateAlias", flags, " | CL_SEPARATE_ALIAS") \ + test_flag("NegativeAlias", flags, " | CL_NEGATIVE_ALIAS") \ test_flag("Save", flags, " | CL_SAVE") \ test_flag("Joined", flags, " | CL_JOINED") \ test_flag("JoinedOrMissing", flags, " | CL_JOINED | CL_MISSING_OK") \ |