From 6624cbdeed9da2ef824e3f3f9dc5f4a5799b9f23 Mon Sep 17 00:00:00 2001 From: Bob Wilson Date: Fri, 8 Apr 2005 17:26:42 +0000 Subject: * config/tc-xtensa.c (xtensa_create_xproperty_segments): Skip SEC_MERGE sections. --- gas/config/tc-xtensa.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gas/config') diff --git a/gas/config/tc-xtensa.c b/gas/config/tc-xtensa.c index c621a8c..188987d 100644 --- a/gas/config/tc-xtensa.c +++ b/gas/config/tc-xtensa.c @@ -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)) -- cgit v1.1