summaryrefslogtreecommitdiff
path: root/bfd/elf32-i386.c
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2015-11-10 04:26:55 -0800
committerH.J. Lu <hjl.tools@gmail.com>2015-11-10 04:27:51 -0800
commit18954b29a1b49c9ffbfef925fdac4a23194ef82d (patch)
tree19802b087c9cb9ea480410676f2aca2d47d3a789 /bfd/elf32-i386.c
parent2d5da47320d6d22a58b793801999ba33c43c758f (diff)
Handle x86 VTINHERIT/VTENTRY relocs when deleting relocations
* elf32-i386.c (elf_i386_relocate_section): Handle VTINHERIT and VTENTRY relocations when deleting relocations. * elf64-x86-64.c (elf_x86_64_relocate_section): Likewise.
Diffstat (limited to 'bfd/elf32-i386.c')
-rw-r--r--bfd/elf32-i386.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/bfd/elf32-i386.c b/bfd/elf32-i386.c
index ee45ed161a..1df7244f62 100644
--- a/bfd/elf32-i386.c
+++ b/bfd/elf32-i386.c
@@ -3647,7 +3647,11 @@ elf_i386_relocate_section (bfd *output_bfd,
r_type = ELF32_R_TYPE (rel->r_info);
if (r_type == R_386_GNU_VTINHERIT
|| r_type == R_386_GNU_VTENTRY)
- continue;
+ {
+ if (wrel != rel)
+ *wrel = *rel;
+ continue;
+ }
if ((indx = r_type) >= R_386_standard
&& ((indx = r_type - R_386_ext_offset) - R_386_standard