mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-26 22:07:58 +08:00
PR gas/5133
* config/tc-arm.c (md_apply_fix): Correct error message
This commit is contained in:
@ -1,5 +1,7 @@
|
|||||||
2007-10-08 Nick Clifton <nickc@redhat.com>
|
2007-10-08 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
|
PR gas/5133
|
||||||
|
* config/tc-arm.c (md_apply_fix): Correct error message
|
||||||
PR gas/5136
|
PR gas/5136
|
||||||
* config/tc-bfin.c (md_apply_fix): Fix error message.
|
* config/tc-bfin.c (md_apply_fix): Fix error message.
|
||||||
PR gas/5135
|
PR gas/5135
|
||||||
|
@ -18732,7 +18732,7 @@ md_apply_fix (fixS * fixP,
|
|||||||
newval = md_chars_to_number (buf, THUMB_SIZE);
|
newval = md_chars_to_number (buf, THUMB_SIZE);
|
||||||
if (value < 0 || value > 255)
|
if (value < 0 || value > 255)
|
||||||
as_bad_where (fixP->fx_file, fixP->fx_line,
|
as_bad_where (fixP->fx_file, fixP->fx_line,
|
||||||
_("invalid immediate: %ld is too large"),
|
_("invalid immediate: %ld is out of range"),
|
||||||
(long) value);
|
(long) value);
|
||||||
newval |= value;
|
newval |= value;
|
||||||
md_number_to_chars (buf, newval, THUMB_SIZE);
|
md_number_to_chars (buf, newval, THUMB_SIZE);
|
||||||
|
Reference in New Issue
Block a user