mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-23 18:14:13 +08:00
* mach-o.c (bfd_mach_o_make_bfd_section): Fix test for non zerofill sections.
This commit is contained in:
parent
dabbade67e
commit
3a4743fef3
@ -1,3 +1,8 @@
|
||||
2007-08-31 Jesse Michael <jmichael@suse.de>
|
||||
|
||||
* mach-o.c (bfd_mach_o_make_bfd_section): Fix test for non
|
||||
zerofill sections.
|
||||
|
||||
2007-08-28 David Heine <dlheine@tensilica.com>
|
||||
|
||||
* elf32-xtensa.c (compute_ebb_actions): Update removed_bytes when
|
||||
|
@ -644,7 +644,7 @@ bfd_mach_o_make_bfd_section (bfd *abfd, bfd_mach_o_section *section)
|
||||
sprintf (sname, "%s.%s.%s", prefix, section->segname, section->sectname);
|
||||
|
||||
flags = SEC_ALLOC;
|
||||
if (!(section->flags & BFD_MACH_O_S_ZEROFILL))
|
||||
if ((section->flags & SECTION_TYPE) != BFD_MACH_O_S_ZEROFILL)
|
||||
flags = SEC_HAS_CONTENTS | SEC_LOAD | SEC_ALLOC | SEC_CODE;
|
||||
bfdsec = bfd_make_section_anyway_with_flags (abfd, sname, flags);
|
||||
if (bfdsec == NULL)
|
||||
|
Loading…
Reference in New Issue
Block a user