diff options
author | Nick Clifton <nickc@redhat.com> | 2011-05-17 16:15:59 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2011-05-17 16:15:59 +0000 |
commit | 9fd07943ffd27fb0aeee0acf20262e45f6716316 (patch) | |
tree | 00dfa26c3309599cf179b5629e5eb8350c6d4eb9 /gas/config/tc-mt.c | |
parent | fe817eb1a32305211d7aba8832cd974b2671b69b (diff) | |
download | fsf-binutils-gdb-9fd07943ffd27fb0aeee0acf20262e45f6716316.zip fsf-binutils-gdb-9fd07943ffd27fb0aeee0acf20262e45f6716316.tar.gz fsf-binutils-gdb-9fd07943ffd27fb0aeee0acf20262e45f6716316.tar.bz2 |
* config/tc-m32r.c (md_show_usage): Fix typos in descriptions.
* config/tc-mt.c (md_assemble): Fix typos in warning messages.
* cond.c (s_else): Fix typos in error messages.
* config/tc-pj.c (md_assemble): Fix typo in error message.
Diffstat (limited to 'gas/config/tc-mt.c')
-rw-r--r-- | gas/config/tc-mt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/config/tc-mt.c b/gas/config/tc-mt.c index 1b81e1f..6e54782 100644 --- a/gas/config/tc-mt.c +++ b/gas/config/tc-mt.c @@ -258,13 +258,13 @@ md_assemble (char * str) && insn.fields.f_sr1 == delayed_load_register) || (CGEN_INSN_ATTR_VALUE (insn.insn, CGEN_INSN_USES_FRSR2) && insn.fields.f_sr2 == delayed_load_register)) - as_warn (_("operand references R%ld of previous instrutcion."), + as_warn (_("operand references R%ld of previous instruction."), delayed_load_register); else if ((CGEN_INSN_ATTR_VALUE (insn.insn, CGEN_INSN_USES_FRSR1) && insn.fields.f_sr1 == prev_delayed_load_register) || (CGEN_INSN_ATTR_VALUE (insn.insn, CGEN_INSN_USES_FRSR2) && insn.fields.f_sr2 == prev_delayed_load_register)) - as_warn (_("operand references R%ld of instructcion before previous."), + as_warn (_("operand references R%ld of instruction before previous."), prev_delayed_load_register); } |