* config/tc-xtensa.c (relaxable_section): Check for .eh_frame.

This commit is contained in:
Bob Wilson 2007-11-08 01:40:58 +00:00
parent 36815e57a6
commit 11ac267110
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2007-11-07 Bob Wilson <bob.wilson@acm.org>
* config/tc-xtensa.c (relaxable_section): Check for .eh_frame.
2007-11-07 Eric B. Weddington <eweddington@cso.atmel.com>
* config/tc-avr.c (mcu_types): Add ATtiny88 device.

View File

@ -4728,7 +4728,8 @@ xtensa_set_frag_assembly_state (fragS *fragP)
static bfd_boolean
relaxable_section (asection *sec)
{
return (sec->flags & SEC_DEBUGGING) == 0;
return ((sec->flags & SEC_DEBUGGING) == 0
&& strcmp (sec->name, ".eh_frame") != 0);
}