diff options
author | Ian Lance Taylor <iant@google.com> | 2010-09-15 14:49:38 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2010-09-15 14:49:38 +0000 |
commit | de62175286ec0a9f19fecaae3041319ac2ef31a7 (patch) | |
tree | 5925a674b18b2db79889aeb148bfd294f066cafc /gcc | |
parent | c1d9a70ac020f3a36e77318087c783cb0e4365e9 (diff) | |
download | gcc-de62175286ec0a9f19fecaae3041319ac2ef31a7.zip gcc-de62175286ec0a9f19fecaae3041319ac2ef31a7.tar.gz gcc-de62175286ec0a9f19fecaae3041319ac2ef31a7.tar.bz2 |
c-common.c (parse_optimize_options): Do not capitalize warning messages.
* c-common.c (parse_optimize_options): Do not capitalize warning
messages.
From-SVN: r164308
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/c-family/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/c-family/c-common.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog index 6d3b024..804a93a 100644 --- a/gcc/c-family/ChangeLog +++ b/gcc/c-family/ChangeLog @@ -1,3 +1,8 @@ +2010-09-15 Ian Lance Taylor <iant@google.com> + + * c-common.c (parse_optimize_options): Do not capitalize warning + messages. + 2010-09-09 Nathan Sidwell <nathan@codesourcery.com> * c-common.c (handle_alias_ifunc_attribute): New, broken out of ... diff --git a/gcc/c-family/c-common.c b/gcc/c-family/c-common.c index a3a332b..8231fb8 100644 --- a/gcc/c-family/c-common.c +++ b/gcc/c-family/c-common.c @@ -7730,10 +7730,10 @@ parse_optimize_options (tree args, bool attr_p) ret = false; if (attr_p) warning (OPT_Wattributes, - "Bad option %s to optimize attribute.", p); + "bad option %s to optimize attribute.", p); else warning (OPT_Wpragmas, - "Bad option %s to pragma attribute", p); + "bad option %s to pragma attribute", p); continue; } |