diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2004-05-08 07:05:32 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2004-05-08 07:05:32 +0000 |
commit | 3f980e41d7770c22ca8a2632d76a69443c4f190e (patch) | |
tree | a5d32470a4c1c21918485602f3359e5543687f1e | |
parent | f4ca1d1f2262adfc170c511006ef2d1684cda694 (diff) | |
download | gdb-3f980e41d7770c22ca8a2632d76a69443c4f190e.zip gdb-3f980e41d7770c22ca8a2632d76a69443c4f190e.tar.gz gdb-3f980e41d7770c22ca8a2632d76a69443c4f190e.tar.bz2 |
* elf32-frv.c (_frvfdpic_add_dyn_reloc): Don't warn when we get
a zero symndx for which we hadn't accounted a dynamic relocation.
(_frvfdpic_add_rofixup): Likewise.
-rw-r--r-- | bfd/ChangeLog | 6 | ||||
-rw-r--r-- | bfd/elf32-frv.c | 18 |
2 files changed, 21 insertions, 3 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 68afdb3..a9088e5 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +2004-05-08 Alexandre Oliva <aoliva@redhat.com> + + * elf32-frv.c (_frvfdpic_add_dyn_reloc): Don't warn when we get + a zero symndx for which we hadn't accounted a dynamic relocation. + (_frvfdpic_add_rofixup): Likewise. + 2004-05-07 Brian Ford <ford@vss.fsi.com> DJ Delorie <dj@redhat.com> diff --git a/bfd/elf32-frv.c b/bfd/elf32-frv.c index 59a312b..cf3195a 100644 --- a/bfd/elf32-frv.c +++ b/bfd/elf32-frv.c @@ -939,8 +939,18 @@ _frvfdpic_add_dyn_reloc (bfd *output_bfd, asection *sreloc, bfd_vma offset, sreloc->contents + reloc_offset); sreloc->reloc_count++; - BFD_ASSERT (entry->dynrelocs > 0); - entry->dynrelocs--; + /* If the entry's index is zero, this relocation was probably to a + linkonce section that got discarded. We reserved a dynamic + relocation, but it was for another entry than the one we got at + the time of emitting the relocation. Unfortunately there's no + simple way for us to catch this situation, since the relocation + is cleared right before calling relocate_section, at which point + we no longer know what the relocation used to point to. */ + if (entry->symndx) + { + BFD_ASSERT (entry->dynrelocs > 0); + entry->dynrelocs--; + } return reloc_offset; } @@ -964,8 +974,10 @@ _frvfdpic_add_rofixup (bfd *output_bfd, asection *rofixup, bfd_vma offset, } rofixup->reloc_count++; - if (entry) + if (entry && entry->symndx) { + /* See discussion about symndx == 0 in _frvfdpic_add_dyn_reloc + above. */ BFD_ASSERT (entry->fixups > 0); entry->fixups--; } |