diff options
author | Leon Winter <winter-gcc@bfw-online.de> | 2016-03-09 15:26:45 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2016-03-09 15:26:45 +0000 |
commit | 26c62da040fb9d602da269a3bdffdea13a4367c7 (patch) | |
tree | c76422ea9c2183fe559db39061e205318e5f628f /bfd | |
parent | aa8a08637e017bcf77b62a3c79a90556085edea1 (diff) | |
download | gdb-26c62da040fb9d602da269a3bdffdea13a4367c7.zip gdb-26c62da040fb9d602da269a3bdffdea13a4367c7.tar.gz gdb-26c62da040fb9d602da269a3bdffdea13a4367c7.tar.bz2 |
For COFF and COFF/PE targets, skip relocations against absolute symbols.
PR ld/19623
* cofflink.c (_bfd_coff_generic_relocate_section): Do not apply
relocations against absolute symbols.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 6 | ||||
-rw-r--r-- | bfd/cofflink.c | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index fc63219..d0dfd9b 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +2016-03-09 Leon Winter <winter-gcc@bfw-online.de> + + PR ld/19623 + * cofflink.c (_bfd_coff_generic_relocate_section): Do not apply + relocations against absolute symbols. + 2016-03-09 Alan Modra <amodra@gmail.com> PR binutils/19775 diff --git a/bfd/cofflink.c b/bfd/cofflink.c index 7652cc3..4756fc3 100644 --- a/bfd/cofflink.c +++ b/bfd/cofflink.c @@ -3007,6 +3007,12 @@ _bfd_coff_generic_relocate_section (bfd *output_bfd, else { sec = sections[symndx]; + + /* PR 19623: Relocations against symbols in + the absolute sections should ignored. */ + if (bfd_is_abs_section (sec)) + continue; + val = (sec->output_section->vma + sec->output_offset + sym->n_value); |