summaryrefslogtreecommitdiff
path: root/sim/sh
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2023-01-18 20:14:54 -0500
committerMike Frysinger <vapier@gentoo.org>2023-01-18 20:47:55 -0500
commitcc67f780ecdb8a5c50eaae9e04b7fc11ce23ddba (patch)
treec8445fbe78b1e5a2599e45689cf67e14938ceaf7 /sim/sh
parent7fd14d6f580eeed46ef4d6f04f6b5f2f1318c0f9 (diff)
downloadbinutils-gdb-cc67f780ecdb8a5c50eaae9e04b7fc11ce23ddba.tar.gz
sim: info: convert verbose field to a bool
The verbose argument has always been an int treated as a bool, so convert it to an explicit bool. Further, update the API docs to match the reality that the verbose value is actually used by some of the internal modules.
Diffstat (limited to 'sim/sh')
-rw-r--r--sim/sh/interp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/sh/interp.c b/sim/sh/interp.c
index c067f0f2bea..2e2e13641e4 100644
--- a/sim/sh/interp.c
+++ b/sim/sh/interp.c
@@ -2272,7 +2272,7 @@ sim_stop_reason (SIM_DESC sd, enum sim_stop *reason, int *sigrc)
}
void
-sim_info (SIM_DESC sd, int verbose)
+sim_info (SIM_DESC sd, bool verbose)
{
double timetaken =
(double) saved_state.asregs.ticks / (double) now_persec ();