ifdef out uses of simSTOP, simSTEP and simBE when DEBUG is defined.
authorGavin Romig-Koch <gavin@redhat.com>
Thu, 22 May 1997 13:30:01 +0000 (13:30 +0000)
committerGavin Romig-Koch <gavin@redhat.com>
Thu, 22 May 1997 13:30:01 +0000 (13:30 +0000)
sim/mips/ChangeLog
sim/mips/interp.c

index 946fd340441237282d5dc3fa0d2108ea4c8c8d4d..498e32fd54491f8011e271ac055cf776673f3a29 100644 (file)
@@ -1,3 +1,8 @@
+Thu May 22 09:32:03 1997  Gavin Koch  <gavin@cygnus.com>
+
+       * 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  <cagney@b1.cygnus.com>
 
        * interp.c (interrupt_event): New function.  Pass exception event
index e2a005640f5efe27b4cb56880f843390c847ceaf..e3ea52934c962e0a49098cc0e16c9716f59cc0d2 100644 (file)
@@ -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 */