From: Alan Modra Date: Tue, 31 Oct 2000 12:33:13 +0000 (+0000) Subject: Kaz Kojima's BFD_RELOC_SH_PCDISP12BY2 fix. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8637c0456a215e6f89fbb853ebb88485de5368df;p=binutils-gdb.git Kaz Kojima's BFD_RELOC_SH_PCDISP12BY2 fix. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index cfefa36184d..bb239f2209e 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2000-10-31 Kaz Kojima + + * config/tc-sh.c (md_apply_fix [BFD_RELOC_SH_PCDISP12BY2]): Allow 4094. + 2000-10-31 Bernd Schmidt * tc-ia64.c (extra_goodness): Only prefer F in slot 1 and B in slot 2. diff --git a/gas/config/tc-sh.c b/gas/config/tc-sh.c index 645397e8b23..0f9ecdf4a6d 100644 --- a/gas/config/tc-sh.c +++ b/gas/config/tc-sh.c @@ -2876,7 +2876,7 @@ md_apply_fix (fixP, val) case BFD_RELOC_SH_PCDISP12BY2: val /= 2; - if (val < -0x800 || val >= 0x7ff) + if (val < -0x800 || val > 0x7ff) as_bad_where (fixP->fx_file, fixP->fx_line, _("pcrel too far")); buf[lowbyte] = val & 0xff; buf[highbyte] |= (val >> 8) & 0xf;