diff options
author | Ian Lance Taylor <ian@airs.com> | 1996-08-05 20:45:55 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1996-08-05 20:45:55 +0000 |
commit | b944e7e855f74a833fb8ae9f60e4e13a0947ab73 (patch) | |
tree | 4d5f5b0ea3315c636c60b73f15f25f667fb5911a /bfd | |
parent | d22ec3b090a9e7fb20af27e6dc3bf0ca4c99bf55 (diff) | |
download | gdb-b944e7e855f74a833fb8ae9f60e4e13a0947ab73.zip gdb-b944e7e855f74a833fb8ae9f60e4e13a0947ab73.tar.gz gdb-b944e7e855f74a833fb8ae9f60e4e13a0947ab73.tar.bz2 |
* elf.c (_bfd_elf_make_section_from_shdr): For a loadable section,
only get the LMA from the phdr if they are in the same part of the
file.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 4 | ||||
-rw-r--r-- | bfd/elf.c | 6 |
2 files changed, 9 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index c3a0578..41a2e95 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,5 +1,9 @@ Mon Aug 5 13:42:41 1996 Ian Lance Taylor <ian@cygnus.com> + * elf.c (_bfd_elf_make_section_from_shdr): For a loadable section, + only get the LMA from the phdr if they are in the same part of the + file. + * elf.c (map_sections_to_segments): Rewrite tests for starting a new segment to make them more comprehensible. If the relationship between the LMA and the VMA changed, start a new segment. Don't @@ -228,7 +228,11 @@ _bfd_elf_make_section_from_shdr (abfd, hdr, name) && phdr->p_paddr != 0 && phdr->p_vaddr != phdr->p_paddr && phdr->p_vaddr <= hdr->sh_addr - && phdr->p_vaddr + phdr->p_memsz >= hdr->sh_addr + hdr->sh_size) + && phdr->p_vaddr + phdr->p_memsz >= hdr->sh_addr + hdr->sh_size + && ((flags & SEC_LOAD) == 0 + || (phdr->p_offset <= hdr->sh_offset + && (phdr->p_offset + phdr->p_filesz + >= hdr->sh_offset + hdr->sh_size)))) { newsect->lma += phdr->p_paddr - phdr->p_vaddr; break; |