diff options
author | Bob Wilson <bob.wilson@acm.org> | 2005-04-08 17:26:42 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@acm.org> | 2005-04-08 17:26:42 +0000 |
commit | 6624cbdeed9da2ef824e3f3f9dc5f4a5799b9f23 (patch) | |
tree | 2fa7462c473f8d365b45d903ff78b3f0e095adf5 /gas | |
parent | 6f8eac0e511dcb7454312581371ee94e68d29587 (diff) | |
download | gdb-6624cbdeed9da2ef824e3f3f9dc5f4a5799b9f23.zip gdb-6624cbdeed9da2ef824e3f3f9dc5f4a5799b9f23.tar.gz gdb-6624cbdeed9da2ef824e3f3f9dc5f4a5799b9f23.tar.bz2 |
* config/tc-xtensa.c (xtensa_create_xproperty_segments): Skip
SEC_MERGE sections.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-xtensa.c | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 1b8dda6..9e8a6c4 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -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 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)) |