Commit de621752 by Ian Lance Taylor Committed by Ian Lance Taylor

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
parent c1d9a70a
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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment