* config/tc-arm.c (md_apply_fix): Generate more accurate
	diagnostic when 8-bit immediate range is exceeded for
	BFD_RELOC_ARM_OFFSET_IMM8.
This commit is contained in:
Mark Shinwell 2007-05-05 16:23:57 +00:00
parent 2a69000bfa
commit f9d4405b8f
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2007-05-05 Mark Shinwell <shinwell@codesourcery.com>
* config/tc-arm.c (md_apply_fix): Generate more accurate
diagnostic when 8-bit immediate range is exceeded for
BFD_RELOC_ARM_OFFSET_IMM8.
2007-05-04 Alan Modra <amodra@bigpond.net.au>
PR gas/4460

View File

@ -17922,7 +17922,7 @@ md_apply_fix (fixS * fixP,
as_bad_where (fixP->fx_file, fixP->fx_line,
_("invalid literal constant: pool needs to be closer"));
else
as_bad (_("bad immediate value for half-word offset (%ld)"),
as_bad (_("bad immediate value for 8-bit offset (%ld)"),
(long) value);
break;
}