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
This commit is contained in:
Ian Lance Taylor 2010-09-15 14:49:38 +00:00 committed by Ian Lance Taylor
parent c1d9a70ac0
commit de62175286
2 changed files with 7 additions and 2 deletions

View File

@ -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 ...

View File

@ -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;
}