summaryrefslogtreecommitdiff
path: root/cross/COMMON/patches-binutils/patch-si
diff options
context:
space:
mode:
Diffstat (limited to 'cross/COMMON/patches-binutils/patch-si')
-rw-r--r--cross/COMMON/patches-binutils/patch-si11
1 files changed, 0 insertions, 11 deletions
diff --git a/cross/COMMON/patches-binutils/patch-si b/cross/COMMON/patches-binutils/patch-si
deleted file mode 100644
index 581d717070c..00000000000
--- a/cross/COMMON/patches-binutils/patch-si
+++ /dev/null
@@ -1,11 +0,0 @@
---- gas/config/tc-sh.c 2000/10/05 05:43:36 1.1
-+++ gas/config/tc-sh.c 2000/12/22 11:28:47 1.2
-@@ -1924,7 +1924,7 @@
-
- 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;