2002-06-18 Chris Demetriou <cgd@broadcom.com>

* emultempl/mipself.em (mips_elf${ELFSIZE}_check_sections): Check
	section flags for SEC_DATA, rather than for SEC_CODE being unset.
This commit is contained in:
Chris Demetriou 2002-06-19 05:34:56 +00:00
parent 33f5f53780
commit 7d0a848ef9
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2002-06-18 Chris Demetriou <cgd@broadcom.com>
* emultempl/mipself.em (mips_elf${ELFSIZE}_check_sections): Check
section flags for SEC_DATA, rather than for SEC_CODE being unset.
2002-06-18 Chris Demetriou <cgd@broadcom.com>
* emultempl/mipself.em (mips_elf${ELFSIZE}_check_sections): Fix

View File

@ -121,7 +121,7 @@ mips_elf${ELFSIZE}_check_sections (abfd, sec, sdatasec)
asection *sec;
PTR sdatasec;
{
if ((bfd_get_section_flags (abfd, sec) & SEC_CODE) == 0
if ((bfd_get_section_flags (abfd, sec) & SEC_DATA)
&& sec != (asection *) sdatasec
&& sec->reloc_count != 0)
einfo ("%B%X: section %s has relocs; cannot use --embedded-relocs\n",