diff options
author | Frank Ch. Eigler <fche@redhat.com> | 2000-03-02 18:14:02 +0000 |
---|---|---|
committer | Frank Ch. Eigler <fche@redhat.com> | 2000-03-02 18:14:02 +0000 |
commit | 14b6bb9932b36a9c437dc24e842b47ed98c274e1 (patch) | |
tree | 350fc0a0a6f6579bef87cb74551720fcc988ddeb /sim/mips/interp.c | |
parent | 6b06eea5e193bc5f67a765a05f2a0c4320e4627b (diff) | |
download | gdb-14b6bb9932b36a9c437dc24e842b47ed98c274e1.tar.gz |
* autoconf correction
* merge from internal repo -> sourceware
2000-03-02 Frank Ch. Eigler <fche@redhat.com>
* configure: Regenerated.
Tue Feb 8 18:35:01 2000 Donald Lindsay <dlindsay@hound.cygnus.com>
* interp.c, mips.igen: all 5 DEADC0DE situations now have sim_io_eprintf
calls, conditional on the simulator being in verbose mode.
Diffstat (limited to 'sim/mips/interp.c')
-rw-r--r-- | sim/mips/interp.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/sim/mips/interp.c b/sim/mips/interp.c index 6fba8df7820..a6d7232a32e 100644 --- a/sim/mips/interp.c +++ b/sim/mips/interp.c @@ -13,8 +13,8 @@ THIS SOFTWARE INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - $Revision: 1.188 $ - $Date: 1999/11/29 14:48:10 $ + $Revision: 1.189 $ + $Date: 2000/02/09 02:37:56 $ NOTEs: @@ -2078,6 +2078,9 @@ store_fpr (SIM_DESC sd, fmt = fmt_uninterpreted; case fmt_single : case fmt_word : + if (STATE_VERBOSE_P(SD)) + sim_io_eprintf (SD, "Warning: PC 0x%s: interp.c store_fpr DEADCODE\n", + pr_addr(cia)); FGR[fpr] = (((uword64)0xDEADC0DE << 32) | (value & 0xFFFFFFFF)); FPR_STATE[fpr] = fmt; break; @@ -3225,6 +3228,10 @@ decode_coproc (SIM_DESC sd, /* 28 = TagLo R4000 VR4100 VR4300 */ /* 29 = TagHi R4000 VR4100 VR4300 */ /* 30 = ErrorEPC R4000 VR4100 VR4300 */ + if (STATE_VERBOSE_P(SD)) + sim_io_eprintf (SD, + "Warning: PC 0x%s:interp.c decode_coproc DEADC0DE\n", + (unsigned)cia); GPR[rt] = 0xDEADC0DE; /* CPR[0,rd] */ /* CPR[0,rd] = GPR[rt]; */ default: |