* config/tc-xtensa.c (xtensa_create_xproperty_segments): Skip
SEC_MERGE sections.
This commit is contained in:
parent
6f8eac0e51
commit
6624cbdeed
@ -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>
|
||||
|
||||
* config/tc-i386.c (tc_gen_reloc): Don't turn
|
||||
|
@ -10393,9 +10393,9 @@ xtensa_create_xproperty_segments (frag_flags_fn flag_fn,
|
||||
flagword flags;
|
||||
|
||||
flags = bfd_get_section_flags (stdoutput, sec);
|
||||
if (flags & SEC_DEBUGGING)
|
||||
continue;
|
||||
if (!(flags & SEC_ALLOC))
|
||||
if ((flags & SEC_DEBUGGING)
|
||||
|| !(flags & SEC_ALLOC)
|
||||
|| (flags & SEC_MERGE))
|
||||
continue;
|
||||
|
||||
if (section_has_xproperty (sec, flag_fn))
|
||||
|
Loading…
Reference in New Issue
Block a user