aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2000-10-31 12:33:13 +0000
committerAlan Modra <amodra@gmail.com>2000-10-31 12:33:13 +0000
commit8637c0456a215e6f89fbb853ebb88485de5368df (patch)
treeb2929ef67d7bd25514475b4ec77b64e505f1d2a0 /gas
parentebeeafe61cc1f31bae03052de4c11daf2641c112 (diff)
downloadgdb-8637c0456a215e6f89fbb853ebb88485de5368df.zip
gdb-8637c0456a215e6f89fbb853ebb88485de5368df.tar.gz
gdb-8637c0456a215e6f89fbb853ebb88485de5368df.tar.bz2
Kaz Kojima's BFD_RELOC_SH_PCDISP12BY2 fix.
Diffstat (limited to 'gas')
-rw-r--r--gas/ChangeLog4
-rw-r--r--gas/config/tc-sh.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index cfefa36..bb239f2 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,7 @@
+2000-10-31 Kaz Kojima <kkojima@rr.iij4u.or.jp>
+
+ * config/tc-sh.c (md_apply_fix [BFD_RELOC_SH_PCDISP12BY2]): Allow 4094.
+
2000-10-31 Bernd Schmidt <bernds@redhat.co.uk>
* 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 645397e..0f9ecdf 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;