mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-27 22:48:57 +08:00
Further changes to warning messages
This commit is contained in:
@ -879,8 +879,8 @@ write_2_short (opcode1, insn1, opcode2, insn2, exec_type, fx)
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (opcode2->op->unit == EITHER_BUT_PREFER_MU)
|
if (opcode2->op->unit == EITHER_BUT_PREFER_MU)
|
||||||
as_warn (_("Executing %s in IU in parallel with %s may not work"),
|
as_warn (_("Executing %s in IU may not work in parallel execution"),
|
||||||
opcode1->op->name, opcode2->op->name);
|
opcode2->op->name);
|
||||||
|
|
||||||
insn = FM00 | (insn1 << 32) | insn2;
|
insn = FM00 | (insn1 << 32) | insn2;
|
||||||
fx = fx->next;
|
fx = fx->next;
|
||||||
@ -902,10 +902,12 @@ write_2_short (opcode1, insn1, opcode2, insn2, exec_type, fx)
|
|||||||
case EXEC_REVSEQ: /* reverse sequential */
|
case EXEC_REVSEQ: /* reverse sequential */
|
||||||
if (opcode2->op->unit == MU)
|
if (opcode2->op->unit == MU)
|
||||||
as_bad (_("MU instruction may not be in the right container"));
|
as_bad (_("MU instruction may not be in the right container"));
|
||||||
if (opcode1->op->unit == EITHER_BUT_PREFER_MU
|
if (opcode1->op->unit == EITHER_BUT_PREFER_MU)
|
||||||
|| opcode2->op->unit == EITHER_BUT_PREFER_MU)
|
|
||||||
as_warn (_("Executing %s in reverse serial with %s may not work"),
|
as_warn (_("Executing %s in reverse serial with %s may not work"),
|
||||||
opcode1->op->name, opcode2->op->name);
|
opcode1->op->name, opcode2->op->name);
|
||||||
|
else if (opcode2->op->unit == EITHER_BUT_PREFER_MU)
|
||||||
|
as_warn (_("Executing %s in IU in reverse serial may not work"),
|
||||||
|
opcode2->op->name);
|
||||||
insn = FM10 | (insn1 << 32) | insn2;
|
insn = FM10 | (insn1 << 32) | insn2;
|
||||||
fx = fx->next;
|
fx = fx->next;
|
||||||
break;
|
break;
|
||||||
|
Reference in New Issue
Block a user