From 1f2a7e386cd13bf2a55394cd1106bb4b9faa2ef8 Mon Sep 17 00:00:00 2001 From: Bob Wilson Date: Fri, 25 Aug 2006 19:59:31 +0000 Subject: [PATCH] * 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. --- gas/ChangeLog | 7 +++++++ gas/config/tc-xtensa.c | 5 +---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index 0dff880580..45ff8860b6 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 476b2d26d7..5f0d8a89d0 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;