diff options
author | Nick Clifton <nickc@redhat.com> | 2000-07-05 21:55:13 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2000-07-05 21:55:13 +0000 |
commit | bcc74d77dbb4a7d78d6b8e938adc48c08c76563e (patch) | |
tree | bdb66b842518cb370a398505a95de7330485c086 /gas/config/tc-d30v.c | |
parent | 0dbdd75378cfd66b5e37a152dbd724c2e1f6969b (diff) | |
download | binutils-bcc74d77dbb4a7d78d6b8e938adc48c08c76563e.zip binutils-bcc74d77dbb4a7d78d6b8e938adc48c08c76563e.tar.gz binutils-bcc74d77dbb4a7d78d6b8e938adc48c08c76563e.tar.bz2 |
Further changes to warning messages
Diffstat (limited to 'gas/config/tc-d30v.c')
-rw-r--r-- | gas/config/tc-d30v.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gas/config/tc-d30v.c b/gas/config/tc-d30v.c index 023e14c..a36c697 100644 --- a/gas/config/tc-d30v.c +++ b/gas/config/tc-d30v.c @@ -879,8 +879,8 @@ write_2_short (opcode1, insn1, opcode2, insn2, exec_type, fx) else { if (opcode2->op->unit == EITHER_BUT_PREFER_MU) - as_warn (_("Executing %s in IU in parallel with %s may not work"), - opcode1->op->name, opcode2->op->name); + as_warn (_("Executing %s in IU may not work in parallel execution"), + opcode2->op->name); insn = FM00 | (insn1 << 32) | insn2; fx = fx->next; @@ -902,10 +902,12 @@ write_2_short (opcode1, insn1, opcode2, insn2, exec_type, fx) case EXEC_REVSEQ: /* reverse sequential */ if (opcode2->op->unit == MU) as_bad (_("MU instruction may not be in the right container")); - if (opcode1->op->unit == EITHER_BUT_PREFER_MU - || opcode2->op->unit == EITHER_BUT_PREFER_MU) + if (opcode1->op->unit == EITHER_BUT_PREFER_MU) as_warn (_("Executing %s in reverse serial with %s may not work"), 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; fx = fx->next; break; |