diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2010-08-13 20:50:27 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2010-08-13 20:50:27 +0000 |
commit | 56d4289c6c259fefb1bd1b30fffb207e48e3dcd5 (patch) | |
tree | 581c40cc1a61fbe0de106079b1aab431b3f9549a /ld/testsuite/ld-i386/discarded1.s | |
parent | e2054bcbe666ddc7ef69caa497864b49dbd406df (diff) | |
download | gdb-56d4289c6c259fefb1bd1b30fffb207e48e3dcd5.zip gdb-56d4289c6c259fefb1bd1b30fffb207e48e3dcd5.tar.gz gdb-56d4289c6c259fefb1bd1b30fffb207e48e3dcd5.tar.bz2 |
Check if .got.plt section is discarded before using it.
bfd/
2010-08-13 H.J. Lu <hongjiu.lu@intel.com>
PR ld/11913
* elf32-i386.c (elf_i386_finish_dynamic_sections): Check if
.got.plt section is discarded.
* elf64-x86-64.c (elf64_x86_64_finish_dynamic_sections): Likewise.
ld/testsuite/
2010-08-13 H.J. Lu <hongjiu.lu@intel.com>
PR ld/11913
* ld-i386/discarded1.d: New.
* ld-i386/discarded1.s: Likewise.
* ld-i386/discarded1.t: Likewise.
* ld-x86-64/discarded1.d: Likewise.
* ld-x86-64/discarded1.s: Likewise.
* ld-x86-64/discarded1.t: Likewise.
* ld-i386/i386.exp: Run discarded1.
* ld-x86-64/x86-64.exp: Likewise.
Diffstat (limited to 'ld/testsuite/ld-i386/discarded1.s')
-rw-r--r-- | ld/testsuite/ld-i386/discarded1.s | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ld/testsuite/ld-i386/discarded1.s b/ld/testsuite/ld-i386/discarded1.s new file mode 100644 index 0000000..9b20c87 --- /dev/null +++ b/ld/testsuite/ld-i386/discarded1.s @@ -0,0 +1,13 @@ + .text +.globl _start + .type _start, @function +_start: + movl x@GOT(%ecx), %eax + .size _start, .-_start +.globl x + .data + .align 4 + .type x, @object + .size x, 4 +x: + .long 2 |