summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sys-devel/binutils/files/2.14/binutils-2.14.90.0.5-ppc64-fdesc.patch')
-rw-r--r--sys-devel/binutils/files/2.14/binutils-2.14.90.0.5-ppc64-fdesc.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/sys-devel/binutils/files/2.14/binutils-2.14.90.0.5-ppc64-fdesc.patch b/sys-devel/binutils/files/2.14/binutils-2.14.90.0.5-ppc64-fdesc.patch
deleted file mode 100644
index 754f81894923..000000000000
--- a/sys-devel/binutils/files/2.14/binutils-2.14.90.0.5-ppc64-fdesc.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-2003-07-29 Alan Modra <amodra@bigpond.net.au>
-
- * elf64-ppc.c (func_desc_adjust): Give linker created function
- descriptor symbols a size and type.
- (ppc64_elf_relocate_section): Correct lq insn test.
-
---- bfd/elf64-ppc.c 27 Jul 2003 09:05:08 -0000 1.121
-+++ bfd/elf64-ppc.c 29 Jul 2003 06:47:10 -0000 1.122
-@@ -4310,6 +4310,8 @@ func_desc_adjust (struct elf_link_hash_e
- }
- fdh = (struct elf_link_hash_entry *) bh;
- fdh->elf_link_hash_flags &= ~ELF_LINK_NON_ELF;
-+ fdh->size = 24;
-+ fdh->type = STT_OBJECT;
- }
-
- if (fdh != NULL
-@@ -8434,7 +8436,7 @@ ppc64_elf_relocate_section (bfd *output_
- _DS relocs bloats all reloc switches in this file. It
- doesn't seem to make much sense to use any of these relocs
- in data, so testing the insn should be safe. */
-- if ((insn & (0x3f << 26)) == (56 << 26))
-+ if ((insn & (0x3f << 26)) == (56u << 26))
- mask = 15;
- if (((relocation + addend) & mask) != 0)
- {