aboutsummaryrefslogtreecommitdiff
path: root/bfd/elf32-i386.c
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2015-09-30 08:32:45 -0700
committerH.J. Lu <hjl.tools@gmail.com>2015-09-30 08:45:13 -0700
commit4b627c18440f51077f8fd4c18adaa3919c3a373e (patch)
tree1bab6b77eaec81d3909f55ed8ac94b162a884549 /bfd/elf32-i386.c
parentede5f15146ae45f4c017f5701629a4fa04ef2beb (diff)
downloadgdb-4b627c18440f51077f8fd4c18adaa3919c3a373e.zip
gdb-4b627c18440f51077f8fd4c18adaa3919c3a373e.tar.gz
gdb-4b627c18440f51077f8fd4c18adaa3919c3a373e.tar.bz2
Create a PLT entry for R_386_PC32 in non-code sections
Since something like ".long foo - ." may be used as pointer, we make sure that PLT is used if foo is a function defined in a shared library. bfd/ PR ld/19031 * elf32-i386.c (elf_i386_check_relocs): Set pointer_equality_needed for R_386_PC32 reloc in non-code sections. ld/testsuite/ PR ld/19031 * ld-i386/i386.exp: Run PR ld/19031 test. * ld/testsuite/ld-i386/pr19031.out: New file. * ld/testsuite/ld-i386/pr19031a.c: Likewise. * ld/testsuite/ld-i386/pr19031b.S: Likewise. * ld/testsuite/ld-i386/pr19031c.c: Likewise.
Diffstat (limited to 'bfd/elf32-i386.c')
-rw-r--r--bfd/elf32-i386.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/bfd/elf32-i386.c b/bfd/elf32-i386.c
index 9390450..0a06191 100644
--- a/bfd/elf32-i386.c
+++ b/bfd/elf32-i386.c
@@ -1772,7 +1772,15 @@ elf_i386_check_relocs (bfd *abfd,
/* We may need a .plt entry if the function this reloc
refers to is in a shared lib. */
h->plt.refcount += 1;
- if (r_type != R_386_PC32)
+ if (r_type == R_386_PC32)
+ {
+ /* Since something like ".long foo - ." may be used
+ as pointer, make sure that PLT is used if foo is
+ a function defined in a shared library. */
+ if ((sec->flags & SEC_CODE) == 0)
+ h->pointer_equality_needed = 1;
+ }
+ else
{
h->pointer_equality_needed = 1;
/* R_386_32 can be resolved at run-time. */