]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR other/32754 (The opt?-gen.awk file generators produce incorrect credits)
authorManuel López-Ibáñez <manu@gcc.gnu.org>
Thu, 7 Feb 2008 20:48:24 +0000 (20:48 +0000)
committerManuel López-Ibáñez <manu@gcc.gnu.org>
Thu, 7 Feb 2008 20:48:24 +0000 (20:48 +0000)
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.
* opth-gen.awk: Replace reference to opts.sh with
opth-gen.awk.

From-SVN: r132175

gcc/ChangeLog
gcc/doc/options.texi
gcc/optc-gen.awk
gcc/opth-gen.awk
gcc/opts-common.c

index 4517b82ae5e4717bc868543b61611286ed416838..ae5adcaebf171f092af0dee776471d289f3db1af 100644 (file)
@@ -1,3 +1,13 @@
+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.
+       * opth-gen.awk: Replace reference to opts.sh with
+       opth-gen.awk.
+       
 2008-02-07  Ralf Corsepius  <ralf.corsepius@rtems.org>
 
        * config/m68k/t-rtems (MULTILIB_OPTIONS, MULTILIB_EXCEPTIONS,
index 05fa05b53230d8445dffedc06c478618906c7e3f..eeccdec8f77cc099180746601533dc5221557156 100644 (file)
@@ -5,7 +5,7 @@
 @node Options
 @chapter Option specification files
 @cindex option specification files
-@cindex @samp{opts.sh}
+@cindex @samp{optc-gen.awk}
 
 Most GCC command-line options are described by special option
 definition files, the names of which conventionally end in
index 953fea4f224e23666d502552cd21678a916913b0..d5fcd9fadbdc18845fd70ada6044a8df5a3f3d5a 100644 (file)
@@ -54,7 +54,7 @@ BEGIN {
 
 # Dump that array of options into a C file.
 END {
-print "/* This file is auto-generated by opts.sh.  */"
+print "/* This file is auto-generated by optc-gen.awk.  */"
 print ""
 n_headers = split(header_name, headers, " ")
 for (i = 1; i <= n_headers; i++)
index 2b3324d23299bb31ad5a938023e06785675adbb1..f6706a6ef557429d246b94f9ff1991dc72e277c3 100644 (file)
@@ -55,7 +55,7 @@ BEGIN {
 # Dump out an enumeration into a .h file.
 # Combine the flags of duplicate options.
 END {
-print "/* This file is auto-generated by opts.sh.  */"
+print "/* This file is auto-generated by opth-gen.awk.  */"
 print ""
 print "#ifndef OPTIONS_H"
 print "#define OPTIONS_H"
index e4714f204d02f105a5faeb50d9fe315ea9549a2c..5a6786d1105a9ecc08fcfdb9d0109820d0fe60d3 100644 (file)
@@ -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).