* 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.
This commit is contained in:
Bob Wilson 2006-08-25 19:59:31 +00:00
parent 3413503941
commit 1f2a7e386c
2 changed files with 8 additions and 4 deletions

View File

@ -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.

View File

@ -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;