Message ID | mcrpqwfukl2.fsf@google.com |
---|---|
State | New |
Headers | show |
On Wed, 15 Sep 2010, Ian Lance Taylor wrote: > - "Bad option %s to optimize attribute.", p); > + "bad option %s to optimize attribute.", p); There's still an inappropriate trailing "." here.... (Anyone who wishes to clean up such issues generally rather than as they come across them should probably regenerate gcc.pot then look there for messages beginning with a capital letter or ending with "." - some messages in gcc.pot are option help texts etc., but most are diagnostics.)
Index: c-family/c-common.c =================================================================== --- c-family/c-common.c (revision 164305) +++ c-family/c-common.c (working copy) @@ -7730,10 +7730,10 @@ parse_optimize_options (tree args, bool 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; }