Browse Source

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).
binutils-2_11-branch
Andrew Cagney 26 years ago
parent
commit
f9cbceb6b7
  1. 6
      sim/common/ChangeLog
  2. 2
      sim/common/hw-properties.h
  3. 3
      sim/common/nrun.c

6
sim/common/ChangeLog

@ -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.

2
sim/common/hw-properties.h

@ -166,7 +166,7 @@ int hw_find_integer_array_property
(struct hw *me,
const char *property,
unsigned index,
signed_word *integer);
signed_cell *integer);

3
sim/common/nrun.c

@ -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);

Loading…
Cancel
Save