From: Bob Wilson Date: Fri, 25 Aug 2006 19:59:31 +0000 (+0000) Subject: * config/tc-xtensa.c (xtensa_mark_literal_pool_location): Do not check X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1f2a7e386cd13bf2a55394cd1106bb4b9faa2ef8;p=binutils-gdb.git * config/tc-xtensa.c (xtensa_mark_literal_pool_location): Do not check the state of the absolute_literals directive. Remove align frag at the start of the literal pool position. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 0dff880580d..45ff8860b67 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,10 @@ +2006-08-25 Sterling Augustine + Bob Wilson + + * config/tc-xtensa.c (xtensa_mark_literal_pool_location): Do not check + the state of the absolute_literals directive. Remove align frag at + the start of the literal pool position. + 2006-08-25 Bob Wilson * doc/c-xtensa.texi: Add @group commands in examples. diff --git a/gas/config/tc-xtensa.c b/gas/config/tc-xtensa.c index 476b2d26d71..5f0d8a89d00 100644 --- a/gas/config/tc-xtensa.c +++ b/gas/config/tc-xtensa.c @@ -4516,12 +4516,9 @@ xtensa_mark_literal_pool_location (void) emit_state s; fragS *pool_location; - if (use_literal_section && !directive_state[directive_absolute_literals]) + if (use_literal_section) return; - frag_align (2, 0, 0); - record_alignment (now_seg, 2); - /* We stash info in these frags so we can later move the literal's fixes into this frchain's fix list. */ pool_location = frag_now;