1999-09-13 Donn Terry <donn@interix.com>

* coffcode.h (coff_write_object_contents): Don't check reloc_count
	when determining whether to set F_RELFLG.
This commit is contained in:
Ian Lance Taylor
1999-09-13 23:42:43 +00:00
parent cff3e48be7
commit 7920749071
2 changed files with 8 additions and 0 deletions

View File

@ -3072,8 +3072,11 @@ coff_write_object_contents (abfd)
section.s_lnnoptr = current->line_filepos;
section.s_nreloc = current->reloc_count;
section.s_nlnno = current->lineno_count;
#ifndef COFF_IMAGE_WITH_PE
/* In PEI, relocs come in the .reloc section. */
if (current->reloc_count != 0)
hasrelocs = true;
#endif
if (current->lineno_count != 0)
haslinno = true;
if ((current->flags & SEC_DEBUGGING) != 0