* config/tc-mips.c (mips_ip) <'u'>: Report the value of the LUI

argument complained about; reword the message.
This commit is contained in:
Maciej W. Rozycki 2010-12-09 22:52:54 +00:00
parent f01dc9538a
commit 88320db2f7
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2010-12-09 Maciej W. Rozycki <macro@codesourcery.com>
* config/tc-mips.c (mips_ip) <'u'>: Report the value of the LUI
argument complained about; reword the message.
2010-12-09 Maciej W. Rozycki <macro@codesourcery.com>
* config/tc-mips.c (macro)

View file

@ -9999,7 +9999,8 @@ mips_ip (char *str, struct mips_cl_insn *ip)
&& imm_expr.X_op == O_constant
&& (imm_expr.X_add_number < 0
|| imm_expr.X_add_number >= 0x10000))
as_bad (_("lui expression not in range 0..65535"));
as_bad (_("lui expression (%lu) not in range 0..65535"),
(unsigned long) imm_expr.X_add_number);
s = expr_end;
continue;