On Wed, 2007-09-26 at 17:09 +0100, Nick Clifton wrote:
> * ia64-gen.c (print_dependency_table): Likewise.
You accidentally replaced %s with %, which results in a compiler error
with -Werror. This only shows up if you do a maintenance build, or
build ia64-gen by hand.
../../src/opcodes/ia64-gen.c:1556: warning: unknown conversion type
character 0xa in format
I checked in the following patch to fix this. I regenerated
ia64-asmtab.c and verified that there was no change to it, and hence no
changes to any installed binaries.
--
Jim Wilson, GNU Tools Support, http://www.specifix.com
2007-09-26 James E. Wilson <[EMAIL PROTECTED]>
* ia64-gen.c (print_dependency_table): Fix typo in last patch.
Index: ia64-gen.c
===================================================================
RCS file: /cvs/src/src/opcodes/ia64-gen.c,v
retrieving revision 1.23
diff -p -r1.23 ia64-gen.c
*** ia64-gen.c 26 Sep 2007 16:07:18 -0000 1.23
--- ia64-gen.c 26 Sep 2007 18:03:59 -0000
*************** print_dependency_table ()
*** 1552,1558 ****
if (rdeps[i]->total_chks == 0)
{
if (rdeps[i]->total_regs)
! warn (_("Warning: rsrc %s (%s) has no chks%\n"),
rdeps[i]->name, mode_str[rdeps[i]->mode]);
else
warn (_("Warning: rsrc %s (%s) has no chks or regs\n"),
--- 1552,1558 ----
if (rdeps[i]->total_chks == 0)
{
if (rdeps[i]->total_regs)
! warn (_("Warning: rsrc %s (%s) has no chks\n"),
rdeps[i]->name, mode_str[rdeps[i]->mode]);
else
warn (_("Warning: rsrc %s (%s) has no chks or regs\n"),
_______________________________________________
bug-binutils mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-binutils