* config/tc-mips.c (mips_ip) <'u'>: Report the value of the LUI
authorMaciej W. Rozycki <macro@linux-mips.org>
Thu, 9 Dec 2010 22:52:54 +0000 (22:52 +0000)
committerMaciej W. Rozycki <macro@linux-mips.org>
Thu, 9 Dec 2010 22:52:54 +0000 (22:52 +0000)
argument complained about; reword the message.

gas/ChangeLog
gas/config/tc-mips.c

index a3f72b785861760abefcec78e969db7e89884c61..64cdfe1f499e69ddbf3bc5bef3105b343be0d368 100644 (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)
index 3be00bcd610e04d67aa33289e0989a8b6617a99c..780d879762f98ae39c971ee5fb6223a063f704d7 100644 (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;