From ab98fd5dbc5623f4905267b02a02a83d3401ee0a Mon Sep 17 00:00:00 2001 From: Steve Chamberlain Date: Tue, 26 May 1992 23:53:00 +0000 Subject: * coff-a29k.c: do byte relocs correctly * coffcode.h (styp_to_sec_flags): never load INFO sections * seclet.c (rel): don't relocate INFO sections --- bfd/seclet.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'bfd/seclet.c') diff --git a/bfd/seclet.c b/bfd/seclet.c index d13d683..e16fa28 100644 --- a/bfd/seclet.c +++ b/bfd/seclet.c @@ -58,7 +58,8 @@ DEFUN(rel,(abfd, seclet, output_section), asection *output_section) { - if (output_section->flags & SEC_HAS_CONTENTS ) + if (output_section->flags & SEC_HAS_CONTENTS + && !(output_section->flags & SEC_NEVER_LOAD)) { bfd_byte *data = (bfd_byte *)alloca(seclet->size); data = bfd_get_relocated_section_contents(abfd, seclet, data); -- cgit v1.1