mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-28 15:18:37 +08:00
Fix problem with double-stop-bit after itc.i instruction.
* config/tc-ia64.c (emit_one_bundle): For IA64_OPCODE_LAST, if we change the template, then clear md.slot[curr].end_of_insn_group.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2006-03-02 James E Wilson <wilson@specifix.com>
|
||||||
|
|
||||||
|
* config/tc-ia64.c (emit_one_bundle): For IA64_OPCODE_LAST, if we
|
||||||
|
change the template, then clear md.slot[curr].end_of_insn_group.
|
||||||
|
|
||||||
2006-02-28 Jan Beulich <jbeulich@novell.com>
|
2006-02-28 Jan Beulich <jbeulich@novell.com>
|
||||||
|
|
||||||
* macro.c (get_any_string): Don't insert quotes for <>-quoted input.
|
* macro.c (get_any_string): Don't insert quotes for <>-quoted input.
|
||||||
|
@ -6855,6 +6855,10 @@ emit_one_bundle ()
|
|||||||
changing NOPs in front of this slot. */
|
changing NOPs in front of this slot. */
|
||||||
for (j = i; j < 3; ++j)
|
for (j = i; j < 3; ++j)
|
||||||
insn[j] = nop[ia64_templ_desc[required_template].exec_unit[j]];
|
insn[j] = nop[ia64_templ_desc[required_template].exec_unit[j]];
|
||||||
|
|
||||||
|
/* We just picked a template that includes the stop bit in the
|
||||||
|
middle, so we don't need another one emitted later. */
|
||||||
|
md.slot[curr].end_of_insn_group = 0;
|
||||||
}
|
}
|
||||||
template = required_template;
|
template = required_template;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user