* config/tc-arm.c (md_apply_fix): Use as_bad_where for "bad
immediate value for 8-bit offset" error so it shows line info.
+2013-01-29 Roland McGrath <mcgrathr@google.com>
+
+ * config/tc-arm.c (md_apply_fix): Use as_bad_where for "bad
+ immediate value for 8-bit offset" error so it shows line info.
+
2013-01-24 Joseph Myers <joseph@codesourcery.com>
* config/tc-ppc.c (md_assemble): Do not generate APUinfo sections
{
/* PR gas/14987: Allow for whitespace before the expected character. */
skip_whitespace (*str);
-
+
if (**str == c)
{
(*str)++;
as_bad_where (fixP->fx_file, fixP->fx_line,
_("invalid literal constant: pool needs to be closer"));
else
- as_bad (_("bad immediate value for 8-bit offset (%ld)"),
- (long) value);
+ as_bad_where (fixP->fx_file, fixP->fx_line,
+ _("bad immediate value for 8-bit offset (%ld)"),
+ (long) value);
break;
}