diff options
author | Jason Merrill <jason@redhat.com> | 2010-11-01 23:29:52 -0400 |
---|---|---|
committer | Jason Merrill <jason@redhat.com> | 2010-11-01 23:32:03 -0400 |
commit | d29b209e37cb85fdf1cb1d8e0ae263cc3c59312b (patch) | |
tree | 0e6b797a6c1a23c50603805706926a5eaa2184f1 /gcc/doc | |
parent | 2450a78a38a727e7ec673b132315c8379db3b27d (diff) | |
parent | c0000147b2aef6b69e2c6b6d29a9963910f6da98 (diff) | |
download | gcc-constexpr.tar.gz |
Merge remote branch 'trunk' into constexprconstexpr
Diffstat (limited to 'gcc/doc')
-rw-r--r-- | gcc/doc/tm.texi | 18 | ||||
-rw-r--r-- | gcc/doc/tm.texi.in | 18 |
2 files changed, 6 insertions, 30 deletions
diff --git a/gcc/doc/tm.texi b/gcc/doc/tm.texi index 0c2db4739d0..9126d437ace 100644 --- a/gcc/doc/tm.texi +++ b/gcc/doc/tm.texi @@ -99,24 +99,12 @@ from being defined in the @file{.h} file to being part of the @c prevent bad page break with this line You can control the compilation driver. -@defmac SWITCH_TAKES_ARG (@var{char}) -A C expression which determines whether the option @option{-@var{char}} -takes arguments. The value should be the number of arguments that -option takes--zero, for many options. - -By default, this macro is defined as -@code{DEFAULT_SWITCH_TAKES_ARG}, which handles the standard options -properly. You need not define @code{SWITCH_TAKES_ARG} unless you -wish to add additional options which take arguments. Any redefinition -should call @code{DEFAULT_SWITCH_TAKES_ARG} and then check for -additional options. -@end defmac - @defmac WORD_SWITCH_TAKES_ARG (@var{name}) A C expression which determines whether the option @option{-@var{name}} takes arguments. The value should be the number of arguments that -option takes--zero, for many options. This macro rather than -@code{SWITCH_TAKES_ARG} is used for multi-character option names. +option takes--zero, for many options. +This macro does not need to handle options defined in @file{.opt} +files, only those that are handled purely through specs. By default, this macro is defined as @code{DEFAULT_WORD_SWITCH_TAKES_ARG}, which handles the standard options diff --git a/gcc/doc/tm.texi.in b/gcc/doc/tm.texi.in index c4d5e8ab150..2c36a765906 100644 --- a/gcc/doc/tm.texi.in +++ b/gcc/doc/tm.texi.in @@ -99,24 +99,12 @@ from being defined in the @file{.h} file to being part of the @c prevent bad page break with this line You can control the compilation driver. -@defmac SWITCH_TAKES_ARG (@var{char}) -A C expression which determines whether the option @option{-@var{char}} -takes arguments. The value should be the number of arguments that -option takes--zero, for many options. - -By default, this macro is defined as -@code{DEFAULT_SWITCH_TAKES_ARG}, which handles the standard options -properly. You need not define @code{SWITCH_TAKES_ARG} unless you -wish to add additional options which take arguments. Any redefinition -should call @code{DEFAULT_SWITCH_TAKES_ARG} and then check for -additional options. -@end defmac - @defmac WORD_SWITCH_TAKES_ARG (@var{name}) A C expression which determines whether the option @option{-@var{name}} takes arguments. The value should be the number of arguments that -option takes--zero, for many options. This macro rather than -@code{SWITCH_TAKES_ARG} is used for multi-character option names. +option takes--zero, for many options. +This macro does not need to handle options defined in @file{.opt} +files, only those that are handled purely through specs. By default, this macro is defined as @code{DEFAULT_WORD_SWITCH_TAKES_ARG}, which handles the standard options |