From: Bob Wilson Date: Mon, 6 Mar 2006 18:02:06 +0000 (+0000) Subject: * config/tc-xtensa.c (xtensa_post_relax_hook): Generate literal tables X-Git-Tag: binutils-csl-2_17-branchpoint~107 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b29757dc18056c74a69281466291385f0646c5d2;p=thirdparty%2Fbinutils-gdb.git * config/tc-xtensa.c (xtensa_post_relax_hook): Generate literal tables even when using the text-section-literals option. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 709e66b0a4d..ca185b1d15c 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2006-03-06 Bob Wilson + + * config/tc-xtensa.c (xtensa_post_relax_hook): Generate literal tables + even when using the text-section-literals option. + 2006-03-06 Nathan Sidwell * config/tc-m68k.c (m68k_extensions): Allow 'float' on both m68k diff --git a/gas/config/tc-xtensa.c b/gas/config/tc-xtensa.c index a44c28093ef..8c841726cdb 100644 --- a/gas/config/tc-xtensa.c +++ b/gas/config/tc-xtensa.c @@ -10078,11 +10078,10 @@ xtensa_post_relax_hook (void) xtensa_find_unmarked_state_frags (); - if (use_literal_section) - xtensa_create_property_segments (get_frag_is_literal, - NULL, - XTENSA_LIT_SEC_NAME, - xt_literal_sec); + xtensa_create_property_segments (get_frag_is_literal, + NULL, + XTENSA_LIT_SEC_NAME, + xt_literal_sec); xtensa_create_xproperty_segments (get_frag_property_flags, XTENSA_PROP_SEC_NAME, xt_prop_sec);