diff options
author | Mark Shinwell <shinwell@codesourcery.com> | 2007-05-05 16:23:57 +0000 |
---|---|---|
committer | Mark Shinwell <shinwell@codesourcery.com> | 2007-05-05 16:23:57 +0000 |
commit | f9d4405b8f10e1875598a893aec2a6cd563c3f48 (patch) | |
tree | 77b94d2338af8f825a51b888c24c93c626947351 /gas/config/tc-arm.c | |
parent | 2a69000bfa0bee656a813120f1745c3baede0515 (diff) | |
download | gdb-f9d4405b8f10e1875598a893aec2a6cd563c3f48.zip gdb-f9d4405b8f10e1875598a893aec2a6cd563c3f48.tar.gz gdb-f9d4405b8f10e1875598a893aec2a6cd563c3f48.tar.bz2 |
gas/
* config/tc-arm.c (md_apply_fix): Generate more accurate
diagnostic when 8-bit immediate range is exceeded for
BFD_RELOC_ARM_OFFSET_IMM8.
Diffstat (limited to 'gas/config/tc-arm.c')
-rw-r--r-- | gas/config/tc-arm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c index 62360f1..b558507 100644 --- a/gas/config/tc-arm.c +++ b/gas/config/tc-arm.c @@ -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; } |