* config/tc-xtensa.c (xtensa_create_xproperty_segments): Skip
[deliverable/binutils-gdb.git] / gas / config / tc-xtensa.c
index c621a8c832e59cf2e2b7a386945c0d76d3f2972c..188987df5f9e116f98732ca7e8fae0ec97ff83e9 100644 (file)
@@ -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))
This page took 0.026411 seconds and 4 git commands to generate.