2000-06-25 Stephane Carrez <Stephane.Carrez@worldnet.fr>
authorAndrew Cagney <cagney@redhat.com>
Thu, 27 Jul 2000 11:49:07 +0000 (11:49 +0000)
committerAndrew Cagney <cagney@redhat.com>
Thu, 27 Jul 2000 11:49:07 +0000 (11:49 +0000)
        * nrun.c (main): Print the simulator statistics only in
        verbose mode.
        * hw-properties.h (hw_find_integer_array_property): Fix
        prototype (use signed_cell).

sim/common/ChangeLog
sim/common/hw-properties.h
sim/common/nrun.c

index eb07b9204b117e5c1c251ddea936fe6b7e850030..ef7b8eb5ab38f6536616117bf6891d7035598537 100644 (file)
@@ -1,5 +1,11 @@
 Thu Jul 27 20:37:47 2000  Andrew Cagney  <cagney@b1.cygnus.com>
 
+       From 2000-06-25 Stephane Carrez <Stephane.Carrez@worldnet.fr>:
+       * nrun.c (main): Print the simulator statistics only in
+       verbose mode.
+       * hw-properties.h (hw_find_integer_array_property): Fix
+       prototype (use signed_cell).
+
        From 2000-06-25 Stephane Carrez <Stephane.Carrez@worldnet.fr>:
        * sim-events.c (sim_events_remain_time): New function returning
        the time that remains before the event is raised.
index 511fba34daabd9fdff0bb72a1f1aa81eff9f8963..198878fb06b7470a7004734b636f38680342214a 100644 (file)
@@ -166,7 +166,7 @@ int hw_find_integer_array_property
 (struct hw *me,
  const char *property,
  unsigned index,
- signed_word *integer);
+ signed_cell *integer);
 
 
 
index c5b43a25eed9c91b5c5c5c7fea16fd4c2dbead7f..ef25d680915135fa811c4cd4b4ad6f676522900d 100644 (file)
@@ -165,7 +165,8 @@ main (int argc, char **argv)
       
     }
   /* Print any stats the simulator collected.  */
-  sim_info (sd, 0);
+  if (STATE_VERBOSE_P (sd))
+    sim_info (sd, 0);
   
   /* Shutdown the simulator.  */
   sim_close (sd, 0);