diff options
author | Ben Elliston <bje@au.ibm.com> | 2005-04-06 00:11:59 +0000 |
---|---|---|
committer | Ben Elliston <bje@gcc.gnu.org> | 2005-04-06 10:11:59 +1000 |
commit | 8ecf5a683c65da21c8b3e0e843a415fc6518f68c (patch) | |
tree | 98affc16204f2e2ad59ceb22b642a0f85b3bd697 | |
parent | c41f82b27081837148819f76d0cc186bb4dd5368 (diff) | |
download | gcc-8ecf5a683c65da21c8b3e0e843a415fc6518f68c.zip gcc-8ecf5a683c65da21c8b3e0e843a415fc6518f68c.tar.gz gcc-8ecf5a683c65da21c8b3e0e843a415fc6518f68c.tar.bz2 |
gcc.c: Correct comment about DEFAULT_SWITCH_TAKES_ARG and...
* gcc.c: Correct comment about DEFAULT_SWITCH_TAKES_ARG and
DEFAULT_WORD_SWITCH_TAKES_ARG which incorrectly reported these
macros as living in "this file" and not gcc.h.
From-SVN: r97678
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/gcc.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f7e7cd3..b49d5a2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,11 @@ 2005-04-06 Ben Elliston <bje@au.ibm.com> + * gcc.c: Correct comment about DEFAULT_SWITCH_TAKES_ARG and + DEFAULT_WORD_SWITCH_TAKES_ARG which incorrectly reported these + macros as living in "this file" and not gcc.h. + +2005-04-06 Ben Elliston <bje@au.ibm.com> + * doc/invoke.texi (Optimize Options): Mention -ftree-lrs, not -ftree-live_range_split. Perhaps renamed at some point? @@ -59,7 +59,7 @@ compilation is specified by a string called a "spec". */ 4. If the argument takes an argument, e.g., `--baz argument1', modify either DEFAULT_SWITCH_TAKES_ARG or - DEFAULT_WORD_SWITCH_TAKES_ARG in this file. Omit the first `-' + DEFAULT_WORD_SWITCH_TAKES_ARG in gcc.h. Omit the first `-' from `--baz'. 5. Document the option in this file's display_help(). If the |