* config/tc-xtensa.c (xg_assemble_vliw_tokens): Change subtraction
to addition in argument to xtensa_dwarf2_emit_insn.
This commit is contained in:
parent
ba1e897e43
commit
47e70edbf9
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2005-05-20 Bob Wilson <bob.wilson@acm.org>
|
||||
|
||||
* config/tc-xtensa.c (xg_assemble_vliw_tokens): Change subtraction
|
||||
to addition in argument to xtensa_dwarf2_emit_insn.
|
||||
|
||||
2005-05-19 Zack Weinberg <zack@codesourcery.com>
|
||||
|
||||
* Makefile.am: Have 'all' depend on 'info'.
|
||||
|
|
|
@ -6793,7 +6793,7 @@ xg_assemble_vliw_tokens (vliw_insn *vinsn)
|
|||
|
||||
xtensa_insnbuf_to_chars (isa, vinsn->insnbuf, (unsigned char *) f, 0);
|
||||
|
||||
xtensa_dwarf2_emit_insn (insn_size - extra_space, &best_loc);
|
||||
xtensa_dwarf2_emit_insn (insn_size + extra_space, &best_loc);
|
||||
|
||||
for (slot = 0; slot < vinsn->num_slots; slot++)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue