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:
parent
c1d9a70ac0
commit
de62175286
@ -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 ...
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user