diff options
author | Nick Clifton <nickc@redhat.com> | 2007-10-08 10:14:31 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2007-10-08 10:14:31 +0000 |
commit | 4e6e072b6c4ce8700859a498e0bbeddc594ffa55 (patch) | |
tree | 029d947e0d5075d0dbc8be364ae0063bd1d277ea /gas | |
parent | df3e80176e5afce1a994e41da91a37a25a91f570 (diff) | |
download | gdb-4e6e072b6c4ce8700859a498e0bbeddc594ffa55.zip gdb-4e6e072b6c4ce8700859a498e0bbeddc594ffa55.tar.gz gdb-4e6e072b6c4ce8700859a498e0bbeddc594ffa55.tar.bz2 |
PR gas/5133
* config/tc-arm.c (md_apply_fix): Correct error message
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 2 | ||||
-rw-r--r-- | gas/config/tc-arm.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 85a080d..56a8941 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,7 @@ 2007-10-08 Nick Clifton <nickc@redhat.com> + PR gas/5133 + * config/tc-arm.c (md_apply_fix): Correct error message PR gas/5136 * config/tc-bfin.c (md_apply_fix): Fix error message. PR gas/5135 diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c index 255ab96..057781e 100644 --- a/gas/config/tc-arm.c +++ b/gas/config/tc-arm.c @@ -18732,7 +18732,7 @@ md_apply_fix (fixS * fixP, newval = md_chars_to_number (buf, THUMB_SIZE); if (value < 0 || value > 255) as_bad_where (fixP->fx_file, fixP->fx_line, - _("invalid immediate: %ld is too large"), + _("invalid immediate: %ld is out of range"), (long) value); newval |= value; md_number_to_chars (buf, newval, THUMB_SIZE); |