summaryrefslogtreecommitdiff
path: root/gcc/opts-common.c
diff options
context:
space:
mode:
authormanu <manu@138bc75d-0d04-0410-961f-82ee72b054a4>2008-02-07 20:40:19 +0000
committermanu <manu@138bc75d-0d04-0410-961f-82ee72b054a4>2008-02-07 20:40:19 +0000
commit30b0f428d17e454063ae4b873ad0cbf279a26602 (patch)
tree431b274212d3db4023ea46e67e8a1ca19e831673 /gcc/opts-common.c
parent1d19d3fa5fffece50eab930c259dd33022686a1e (diff)
downloadgcc-30b0f428d17e454063ae4b873ad0cbf279a26602.tar.gz
2008-02-07 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
PR other/32754 * doc/options.texi (Options): Replace references to opts.sh with optc-gen.awk. * opts-common.c: Likewise. * optc-gen.awk: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@132174 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/opts-common.c')
-rw-r--r--gcc/opts-common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/opts-common.c b/gcc/opts-common.c
index e4714f204d0..5a6786d1105 100644
--- a/gcc/opts-common.c
+++ b/gcc/opts-common.c
@@ -38,7 +38,7 @@ along with GCC; see the file COPYING3. If not see
before having tested "-g". This doesn't match, and as "-gen-decls"
is less than "-gstabs", it will become the lower bound of the
binary search range, and "-g" will never be seen. To resolve this
- issue, opts.sh makes "-gen-decls" point, via the back_chain member,
+ issue, 'optc-gen.awk' makes "-gen-decls" point, via the back_chain member,
to "-g" so that failed searches that end between "-gen-decls" and
the lexicographically subsequent switch know to go back and see if
"-g" causes a match (which it does in this example).