diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2012-12-21 18:15:22 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2012-12-21 18:15:22 +0000 |
commit | a5479e5ff4c29dcf93acde1424b69d4909fd3044 (patch) | |
tree | c1908afeee4aa8472b534f890d7d416765aab6f0 /ld/testsuite/ld-ifunc/ifunc-14c.s | |
parent | edcac0c105556029774320bc8288beb472e999b5 (diff) | |
download | gdb-a5479e5ff4c29dcf93acde1424b69d4909fd3044.zip gdb-a5479e5ff4c29dcf93acde1424b69d4909fd3044.tar.gz gdb-a5479e5ff4c29dcf93acde1424b69d4909fd3044.tar.bz2 |
Properly adjust h->plt.refcount
bfd/
PR ld/14980
* elf32-i386.c (elf_i386_adjust_dynamic_symbol): Properly
adjust h->plt.refcount.
* elf64-x86-64.c (elf_x86_64_adjust_dynamic_symbol): Likewise.
ld/testsuite/
PR ld/14980
* ld-ifunc/ifunc-14c.s: New file.
* ld-ifunc/ifunc-14e-i386.d: Likewise.
* ld-ifunc/ifunc-14e-x86-64.d: Likewise.
* ld-ifunc/ifunc-14f-i386.d: Likewise.
* ld-ifunc/ifunc-14f-x86-64.d: Likewise.
Diffstat (limited to 'ld/testsuite/ld-ifunc/ifunc-14c.s')
-rw-r--r-- | ld/testsuite/ld-ifunc/ifunc-14c.s | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ld/testsuite/ld-ifunc/ifunc-14c.s b/ld/testsuite/ld-ifunc/ifunc-14c.s new file mode 100644 index 0000000..3cde56e --- /dev/null +++ b/ld/testsuite/ld-ifunc/ifunc-14c.s @@ -0,0 +1,7 @@ + .text + .globl xxx + .type xxx, @function +xxx: + jmp foo + .size xxx, .-xxx + .hidden foo |