diff options
author | Bob Wilson <bob.wilson@acm.org> | 2006-08-25 19:59:31 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@acm.org> | 2006-08-25 19:59:31 +0000 |
commit | 1f2a7e386cd13bf2a55394cd1106bb4b9faa2ef8 (patch) | |
tree | 4c44829501c0aea24a0369e470d943db5a10956a /gas/config/tc-xtensa.c | |
parent | 3413503941c23bb5a9381ddd4eb460180a6a93b0 (diff) | |
download | gdb-1f2a7e386cd13bf2a55394cd1106bb4b9faa2ef8.zip gdb-1f2a7e386cd13bf2a55394cd1106bb4b9faa2ef8.tar.gz gdb-1f2a7e386cd13bf2a55394cd1106bb4b9faa2ef8.tar.bz2 |
* 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.
Diffstat (limited to 'gas/config/tc-xtensa.c')
-rw-r--r-- | gas/config/tc-xtensa.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gas/config/tc-xtensa.c b/gas/config/tc-xtensa.c index 476b2d2..5f0d8a8 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; |