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 | |
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')
-rw-r--r-- | gas/ChangeLog | 7 | ||||
-rw-r--r-- | gas/config/tc-xtensa.c | 5 |
2 files changed, 8 insertions, 4 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 0dff880..45ff886 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,10 @@ +2006-08-25 Sterling Augustine <sterling@tensilica.com> + Bob Wilson <bob.wilson@acm.org> + + * 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 <bob.wilson@acm.org> * doc/c-xtensa.texi: Add @group commands in examples. 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; |