diff options
author | Mark Mitchell <mark@codesourcery.com> | 2002-07-08 05:34:08 +0000 |
---|---|---|
committer | Mark Mitchell <mark@codesourcery.com> | 2002-07-08 05:34:08 +0000 |
commit | e9168c1e2b14c89a5701688c93d42a6c9ae4bb12 (patch) | |
tree | 95e9ce6d557087cd520e261a83dea14bd2fe336c /bfd/cofflink.c | |
parent | d1e122bd6a4a3280358caa7978abc54034f8e137 (diff) | |
download | gdb-e9168c1e2b14c89a5701688c93d42a6c9ae4bb12.zip gdb-e9168c1e2b14c89a5701688c93d42a6c9ae4bb12.tar.gz gdb-e9168c1e2b14c89a5701688c93d42a6c9ae4bb12.tar.bz2 |
* cofflink.c (_bfd_coff_final_link): On PE COFF systems, take into
account the impact of relocation count overflow when computing
section offsets.
* coffcode.h (coff_write_relocs): Use obj_pe when deciding whether
or not to apply the PE COFF reloc overflow handling. Fix a
fencepost error in deciding whether or not to use that technique.
Diffstat (limited to 'bfd/cofflink.c')
-rw-r--r-- | bfd/cofflink.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bfd/cofflink.c b/bfd/cofflink.c index 32200a8..eb9388f 100644 --- a/bfd/cofflink.c +++ b/bfd/cofflink.c @@ -757,6 +757,10 @@ _bfd_coff_final_link (abfd, info) o->flags |= SEC_RELOC; o->rel_filepos = rel_filepos; rel_filepos += o->reloc_count * relsz; + /* In PE COFF, if there are at least 0xffff relocations an + extra relocation will be written out to encode the count. */ + if (obj_pe (abfd) && o->reloc_count >= 0xffff) + rel_filepos += relsz; } if (bfd_coff_long_section_names (abfd) |