diff options
author | Nick Clifton <nickc@redhat.com> | 2002-10-07 16:27:39 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2002-10-07 16:27:39 +0000 |
commit | a8fcf37848630be3b960c7fc026ea55af5766ad1 (patch) | |
tree | 23ac9d7a33e4add2f88b492aa9a145b08862f425 /bfd/cofflink.c | |
parent | 53b2a62f073cd4a0ce2dbf991c06684a982f8726 (diff) | |
download | binutils-gdb-a8fcf37848630be3b960c7fc026ea55af5766ad1.tar.gz |
Don't mark relocations in excluded sections.
Diffstat (limited to 'bfd/cofflink.c')
-rw-r--r-- | bfd/cofflink.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bfd/cofflink.c b/bfd/cofflink.c index eb9388fc71e..c1302ee878a 100644 --- a/bfd/cofflink.c +++ b/bfd/cofflink.c @@ -1322,6 +1322,9 @@ mark_relocs (finfo, input_bfd) if ((a->flags & SEC_RELOC) == 0 || a->reloc_count < 1) continue; + /* Don't mark relocs in excluded sections. */ + if (a->output_section == bfd_abs_section_ptr) + continue; /* Read in the relocs. */ internal_relocs = _bfd_coff_read_internal_relocs |