diff options
Diffstat (limited to 'bfd/elf32-h8300.c')
-rw-r--r-- | bfd/elf32-h8300.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bfd/elf32-h8300.c b/bfd/elf32-h8300.c index f08ab3f..3039b82 100644 --- a/bfd/elf32-h8300.c +++ b/bfd/elf32-h8300.c @@ -706,8 +706,9 @@ elf32_h8_relax_section (bfd *abfd, asection *sec, this section does not have relocs, or if this is not a code section. */ if (bfd_link_relocatable (link_info) - || (sec->flags & SEC_RELOC) == 0 || sec->reloc_count == 0 + || (sec->flags & SEC_RELOC) == 0 + || (sec->flags & SEC_HAS_CONTENTS) == 0 || (sec->flags & SEC_CODE) == 0) return true; |