diff options
author | hjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-05-16 16:56:16 +0000 |
---|---|---|
committer | hjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-05-16 16:56:16 +0000 |
commit | a91c04b74f81c579c52477dd37c84ff825fb3820 (patch) | |
tree | 8ed12515b007ab6591bf675ca3be71aaca7af092 /gcc/doc/options.texi | |
parent | 4f61cce60addb40b11633ed0a1d222e1dd5299a6 (diff) | |
download | gcc-a91c04b74f81c579c52477dd37c84ff825fb3820.tar.gz |
2006-05-16 H.J. Lu <hongjiu.lu@intel.com>
* doc/options.texi: Move the Negative option.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@113827 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/doc/options.texi')
-rw-r--r-- | gcc/doc/options.texi | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/gcc/doc/options.texi b/gcc/doc/options.texi index 58791c72a25..3afb3c11c21 100644 --- a/gcc/doc/options.texi +++ b/gcc/doc/options.texi @@ -100,6 +100,12 @@ The option does not have a ``no-'' form. All options beginning with ``f'', ``W'' or ``m'' are assumed to have a ``no-'' form unless this property is used. +@item Negative(@var{othername}) +The option will turn off another option @var{othername}, which is the +the option name with the leading ``-'' removed. This chain action will +propagate through the @code{Negative} property of the option to be +turned off. + @item Joined @itemx Separate The option takes a mandatory argument. @code{Joined} indicates @@ -136,13 +142,6 @@ parser will set the variable to 1 when the positive form of the option is used and 0 when the ``no-'' form is used. @item -If the option uses the @code{Negative} property, @var{var} is the -the name of an option, with the leading ``-'' removed, which will be -turned off when this option is turned on. This chain action will -propagate through the @code{Negative} property of the option to be -turned off. - -@item If the option takes an argument and has the @code{UInteger} property, @var{var} is an integer variable that stores the value of the argument. |