* config/tc-ppc.c (ppc_insert_operand, md_assemble): Use '%s' for

as_bad calls to silence compiler warning.
This commit is contained in:
Nathan Sidwell 2009-02-10 08:07:31 +00:00
parent b2febfff46
commit ee2c9aa984
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2009-02-10 Nathan Sidwell <nathan@codesourcery.com>
* config/tc-ppc.c (ppc_insert_operand, md_assemble): Use '%s' for
as_bad calls to silence compiler warning.
2009-02-06 Nick Clifton <nickc@redhat.com>
PR 9814

View File

@ -1632,7 +1632,7 @@ ppc_insert_operand (unsigned long insn,
errmsg = NULL;
insn = (*operand->insert) (insn, (long) val, ppc_cpu, &errmsg);
if (errmsg != (const char *) NULL)
as_bad_where (file, line, errmsg);
as_bad_where (file, line, "%s", errmsg);
}
else
insn |= ((long) val & operand->bitm) << operand->shift;
@ -2363,7 +2363,7 @@ md_assemble (char *str)
{
insn = (*operand->insert) (insn, 0L, ppc_cpu, &errmsg);
if (errmsg != (const char *) NULL)
as_bad (errmsg);
as_bad ("%s", errmsg);
continue;
}
@ -2376,7 +2376,7 @@ md_assemble (char *str)
{
insn = (*operand->insert) (insn, 0L, ppc_cpu, &errmsg);
if (errmsg != (const char *) NULL)
as_bad (errmsg);
as_bad ("%s", errmsg);
}
if ((operand->flags & PPC_OPERAND_NEXT) != 0)
next_opindex = *opindex_ptr + 1;