mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-02 23:04:09 +08:00
* config/tc-xtensa.c (emit_single_op): Do not relax MOVI
instructions when such transformations have been disabled.
This commit is contained in:
parent
4c1dce79e2
commit
482fd9f9bf
@ -1,3 +1,8 @@
|
||||
2006-04-14 Sterling Augustine <sterling@tensilica.com>
|
||||
|
||||
* config/tc-xtensa.c (emit_single_op): Do not relax MOVI
|
||||
instructions when such transformations have been disabled.
|
||||
|
||||
2006-04-10 Sterling Augustine <sterling@tensilica.com>
|
||||
|
||||
* config/tc-xtensa.c (xg_assemble_vliw_tokens): Record loop target
|
||||
|
@ -6573,7 +6573,8 @@ emit_single_op (TInsn *orig_insn)
|
||||
|| orig_insn->opcode == xtensa_movi_n_opcode)
|
||||
&& !cur_vinsn.inside_bundle
|
||||
&& (orig_insn->tok[1].X_op == O_symbol
|
||||
|| orig_insn->tok[1].X_op == O_pltrel))
|
||||
|| orig_insn->tok[1].X_op == O_pltrel)
|
||||
&& !orig_insn->is_specific_opcode && use_transform ())
|
||||
xg_assembly_relax (&istack, orig_insn, now_seg, frag_now, 0, 1, 0);
|
||||
else
|
||||
if (xg_expand_assembly_insn (&istack, orig_insn))
|
||||
|
Loading…
Reference in New Issue
Block a user