diff options
author | Mike Stump <mrs@apple.com> | 2004-05-05 12:20:33 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 2004-05-05 12:20:33 +0000 |
commit | 4bed378709c6b95e918002425a23f5fa36943a93 (patch) | |
tree | d6a840d1926291ab41d00a9437a894724197515a /gcc/gcc.h | |
parent | bb8a619e12e06104939fac9969dcd07615ee7260 (diff) | |
download | gcc-4bed378709c6b95e918002425a23f5fa36943a93.tar.gz |
invoke.texi (Directory Options): Document -iquote.
* doc/invoke.texi (Directory Options): Document -iquote.
* doc/cpp.texi: Likewise.
* doc/cppopts.texi: Likewise.
* c-opts.c (c_common_missing_argument): Add -iquote processing.
(c_common_handle_option): Likewise.
* c.opt (iquote): Add.
* gcc.h (DEFAULT_WORD_SWITCH_TAKES_ARG): Add -iquote.
* c-incpath.c (merge_include_chains): Update comment to use -iquote.
* c-opts.c (case OPT_I): Deprecate -I- support.
* doc/invoke.texi: Likewise.
* doc/cpp.texi: Likewise.
* doc/cppopts.texi: Likewise.
From-SVN: r81521
Diffstat (limited to 'gcc/gcc.h')
-rw-r--r-- | gcc/gcc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/gcc.h b/gcc/gcc.h index 9df9ffd1252..f5a04d3a136 100644 --- a/gcc/gcc.h +++ b/gcc/gcc.h @@ -48,8 +48,8 @@ struct spec_function || !strcmp (STR, "imacros") || !strcmp (STR, "aux-info") \ || !strcmp (STR, "idirafter") || !strcmp (STR, "iprefix") \ || !strcmp (STR, "iwithprefix") || !strcmp (STR, "iwithprefixbefore") \ - || !strcmp (STR, "isystem") || !strcmp (STR, "-param") \ - || !strcmp (STR, "specs") \ + || !strcmp (STR, "iquote") || !strcmp (STR, "isystem") \ + || !strcmp (STR, "-param") || !strcmp (STR, "specs") \ || !strcmp (STR, "MF") || !strcmp (STR, "MT") || !strcmp (STR, "MQ")) |