diff options
author | krebbel <krebbel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-10-10 13:07:43 +0000 |
---|---|---|
committer | krebbel <krebbel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-10-10 13:07:43 +0000 |
commit | 5e2d3b19b98dde22a07658cf6d072f504313c38c (patch) | |
tree | 85d39b76d41ebedc4ce2557d30969fbb30fa8179 /gcc | |
parent | 4ad53767b95256ab2e740072d8447218c6fe720c (diff) | |
download | gcc-5e2d3b19b98dde22a07658cf6d072f504313c38c.tar.gz |
2007-10-10 Wolfgang Gellerich <gellerich@de.ibm.com>
* opth-gen.awk: Fixed generation of comment stating the origin
of options.h
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@129203 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/opth-gen.awk | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c347d43fa74..d8a7801ae7e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2007-10-10 Wolfgang Gellerich <gellerich@de.ibm.com> + + * opth-gen.awk: Fixed generation of comment stating the origin + of options.h + 2007-10-10 Kazu Hirata <kazu@codesourcery.com> Revert: diff --git a/gcc/opth-gen.awk b/gcc/opth-gen.awk index dbd019191b6..f096112cc90 100644 --- a/gcc/opth-gen.awk +++ b/gcc/opth-gen.awk @@ -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" |