From d3d2a9f718bdf18618b6f44ffa93a880336eb974 Mon Sep 17 00:00:00 2001 From: Gavin Romig-Koch Date: Thu, 22 May 1997 13:30:01 +0000 Subject: [PATCH] ifdef out uses of simSTOP, simSTEP and simBE when DEBUG is defined. --- sim/mips/ChangeLog | 5 +++++ sim/mips/interp.c | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/sim/mips/ChangeLog b/sim/mips/ChangeLog index 946fd340441..498e32fd544 100644 --- a/sim/mips/ChangeLog +++ b/sim/mips/ChangeLog @@ -1,3 +1,8 @@ +Thu May 22 09:32:03 1997 Gavin Koch + + * interp.c (sim_engine_run): ifdef out uses of simSTOP, simSTEP + and simBE when DEBUG is defined. + Wed May 21 09:08:10 1997 Andrew Cagney * interp.c (interrupt_event): New function. Pass exception event diff --git a/sim/mips/interp.c b/sim/mips/interp.c index e2a005640f5..e3ea52934c9 100644 --- a/sim/mips/interp.c +++ b/sim/mips/interp.c @@ -4140,11 +4140,15 @@ sim_engine_run (sd, next_cpu_nr, siggnal) #ifdef DEBUG { printf("DBG: state = 0x%08X :",state); +#if 0 if (state & simSTOP) printf(" simSTOP"); if (state & simSTEP) printf(" simSTEP"); +#endif if (state & simHALTEX) printf(" simHALTEX"); if (state & simHALTIN) printf(" simHALTIN"); +#if 0 if (state & simBE) printf(" simBE"); +#endif printf("\n"); } #endif /* DEBUG */ -- 2.30.2