summaryrefslogtreecommitdiff
path: root/bfd/elf.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2003-10-16 18:55:48 +0000
committerRoland McGrath <roland@gnu.org>2003-10-16 18:55:48 +0000
commit0c447946e972ac3cc97017673bb1afd74d45d56e (patch)
treee570969a030019eb7595f74b60acd657708062a8 /bfd/elf.c
parent6e68c8d945bb975558096d82121cd23e41bad150 (diff)
downloadbinutils-redhat-0c447946e972ac3cc97017673bb1afd74d45d56e.tar.gz
2003-10-07 Roland McGrath <roland@redhat.com>
* elf.c (_bfd_elf_make_section_from_phdr): Set alignment_power of new section from p_align header field.
Diffstat (limited to 'bfd/elf.c')
-rw-r--r--bfd/elf.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/bfd/elf.c b/bfd/elf.c
index 2d66ced8d4..417fd50beb 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;