From: Andrew Cagney Date: Tue, 9 Sep 1997 10:38:39 +0000 (+0000) Subject: Better word error messages. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9eeaaefa0f7f906f5f187c7bf7f36844dd9662d7;p=binutils-gdb.git Better word error messages. --- diff --git a/sim/mips/ChangeLog b/sim/mips/ChangeLog index 56bf2917643..a69ac32d114 100644 --- a/sim/mips/ChangeLog +++ b/sim/mips/ChangeLog @@ -1,3 +1,8 @@ +Tue Sep 9 17:30:57 1997 Andrew Cagney + + * interp.c (decode_coproc): Clarify warning about unsuported MTC0, + MFC0. + Tue Sep 9 16:28:28 1997 Andrew Cagney * gencode.c (build_instruction): Use SIGNED64 for 64 bit diff --git a/sim/mips/interp.c b/sim/mips/interp.c index 6ace9e3149c..9336ce3a0e9 100644 --- a/sim/mips/interp.c +++ b/sim/mips/interp.c @@ -4127,9 +4127,9 @@ decode_coproc(instruction) /* CPR[0,rd] = GPR[rt]; */ default: if (code == 0x00) - callback->printf_filtered(callback,"Warning: MFC0 %d,%d not handled yet (architecture specific)\n",rt,rd); + callback->printf_filtered(callback,"Warning: MFC0 %d,%d ignored (architecture specific)\n",rt,rd); else - callback->printf_filtered(callback,"Warning: MTC0 %d,%d not handled yet (architecture specific)\n",rt,rd); + callback->printf_filtered(callback,"Warning: MTC0 %d,%d ignored (architecture specific)\n",rt,rd); } } else if (code == 0x10 && (instruction & 0x3f) == 0x18)