gas/ChangeLog

2012-11-20  Yufeng Zhang  <yufeng.zhang@arm.com>

	* config/tc-aarch64.c (first_error_fmt): Add ATTRIBUTE_UNUSED to the
	local variable "ret".
This commit is contained in:
Yufeng Zhang 2012-11-20 10:29:00 +00:00
parent 668b27eacf
commit 3e0baa280f
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2012-11-20 Yufeng Zhang <yufeng.zhang@arm.com>
* config/tc-aarch64.c (first_error_fmt): Add ATTRIBUTE_UNUSED to the
local variable "ret".
2012-11-20 David S. Miller <davem@davemloft.net>
* config/tc-sparc.c (md_parse_option): Only certain arch

View File

@ -643,7 +643,7 @@ first_error_fmt (const char *format, ...)
if (! error_p ())
{
int ret;
int ret ATTRIBUTE_UNUSED;
va_start (args, format);
ret = vsnprintf (buffer, size, format, args);
know (ret <= size - 1 && ret >= 0);