diff options
author | Martin Liska <mliska@suse.cz> | 2019-11-12 11:07:37 +0100 |
---|---|---|
committer | Martin Liska <marxin@gcc.gnu.org> | 2019-11-12 10:07:37 +0000 |
commit | 76c26af90ea3af7487e701e451a4591a81727e8a (patch) | |
tree | f06db17114922ff30c4c817dbb00a5852f3b043e /gcc/doc/options.texi | |
parent | 62aee289e4791fd68aace01accf433fb26b3eeae (diff) | |
download | gcc-76c26af90ea3af7487e701e451a4591a81727e8a.zip gcc-76c26af90ea3af7487e701e451a4591a81727e8a.tar.gz gcc-76c26af90ea3af7487e701e451a4591a81727e8a.tar.bz2 |
Param to options conversion.
2019-11-12 Martin Liska <mliska@suse.cz>
* common.opt: Remove --param and --param= options.
* opt-functions.awk: Mark CL_PARAMS for options
that have Param keyword.
* opts-common.c (decode_cmdline_options_to_array):
Replace --param key=value with --param=key=value.
* opts.c (print_filtered_help): Remove special
printing of params.
(print_specific_help): Update title for params.
(common_handle_option): Do not handle OPT__param.
opts.h (SET_OPTION_IF_UNSET): New macro.
* doc/options.texi: Document Param keyword.
From-SVN: r278083
Diffstat (limited to 'gcc/doc/options.texi')
-rw-r--r-- | gcc/doc/options.texi | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/doc/options.texi b/gcc/doc/options.texi index b59f4d3..c7c70ac 100644 --- a/gcc/doc/options.texi +++ b/gcc/doc/options.texi @@ -475,6 +475,9 @@ affect executable code generation may use this flag instead, so that the option is not taken into account in ways that might affect executable code generation. +@item Param +This is an option that is a parameter. + @item Undocumented The option is deliberately missing documentation and should not be included in the @option{--help} output. |