* config/tc-xtensa.c (xtensa_create_xproperty_segments): Skip

SEC_MERGE sections.
This commit is contained in:
Bob Wilson 2005-04-08 17:26:42 +00:00
parent 6f8eac0e51
commit 6624cbdeed
2 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2005-04-08 Bob Wilson <bob.wilson@acm.org>
* config/tc-xtensa.c (xtensa_create_xproperty_segments): Skip
SEC_MERGE sections.
2005-04-06 H.J. Lu <hongjiu.lu@intel.com> 2005-04-06 H.J. Lu <hongjiu.lu@intel.com>
* config/tc-i386.c (tc_gen_reloc): Don't turn * config/tc-i386.c (tc_gen_reloc): Don't turn

View file

@ -10393,9 +10393,9 @@ xtensa_create_xproperty_segments (frag_flags_fn flag_fn,
flagword flags; flagword flags;
flags = bfd_get_section_flags (stdoutput, sec); flags = bfd_get_section_flags (stdoutput, sec);
if (flags & SEC_DEBUGGING) if ((flags & SEC_DEBUGGING)
continue; || !(flags & SEC_ALLOC)
if (!(flags & SEC_ALLOC)) || (flags & SEC_MERGE))
continue; continue;
if (section_has_xproperty (sec, flag_fn)) if (section_has_xproperty (sec, flag_fn))