diff options
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/elf.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 0db2a5e..c3cc405 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2007-01-11 Nathan Sidwell <nathan@codesourcery.com> + + * elf.c (assign_file_positions_for_load_sections): We can + require fewer phdrs than expected. + 2007-01-08 Kazu Hirata <kazu@codesourcery.com> * archures.c (bfd_mach_cpu32_fido): Rename to bfd_mach_fido. @@ -4275,7 +4275,7 @@ assign_file_positions_for_load_sections (bfd *abfd, elf_tdata (abfd)->program_header_size = alloc * bed->s->sizeof_phdr; else BFD_ASSERT (elf_tdata (abfd)->program_header_size - == alloc * bed->s->sizeof_phdr); + >= alloc * bed->s->sizeof_phdr); if (alloc == 0) { |