From: Roland McGrath Date: Thu, 16 Oct 2003 18:55:48 +0000 (+0000) Subject: 2003-10-07 Roland McGrath X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=57e24cbffc58b4d0ef616819b655dd4d3c00fd23;p=binutils-gdb.git 2003-10-07 Roland McGrath * elf.c (_bfd_elf_make_section_from_phdr): Set alignment_power of new section from p_align header field. --- diff --git a/bfd/elf.c b/bfd/elf.c index 2d66ced8d44..417fd50beb4 100644 --- a/bfd/elf.c +++ b/bfd/elf.c @@ -2206,6 +2206,7 @@ _bfd_elf_make_section_from_phdr (bfd *abfd, newsect->_raw_size = hdr->p_filesz; newsect->filepos = hdr->p_offset; newsect->flags |= SEC_HAS_CONTENTS; + newsect->alignment_power = bfd_log2 (hdr->p_align); if (hdr->p_type == PT_LOAD) { newsect->flags |= SEC_ALLOC;