diff options
author | David Edelsohn <dje.gcc@gmail.com> | 1995-11-18 03:39:17 +0000 |
---|---|---|
committer | David Edelsohn <dje.gcc@gmail.com> | 1995-11-18 03:39:17 +0000 |
commit | e47e480588c94b30fef9179d1a3e8e7569dba205 (patch) | |
tree | deaadcc98f99fdf317f6403d07e165031a0c3d78 /sim | |
parent | 708f6147e4dcb67537533374f32a7fdb2da9722f (diff) | |
download | gdb-e47e480588c94b30fef9179d1a3e8e7569dba205.zip gdb-e47e480588c94b30fef9179d1a3e8e7569dba205.tar.gz gdb-e47e480588c94b30fef9179d1a3e8e7569dba205.tar.bz2 |
* armdefs.h (ARMul_State): New member `verbose'.
* armrdi.c (ARMul_ConsolePrint): Add missing va_end.
* run.c (verbose): Make global.
* wrapper.c (init): Set state->verbose.
(ARMul_ConsolePrint): Don't print anything if !verbose.
Diffstat (limited to 'sim')
-rw-r--r-- | sim/arm/run.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/arm/run.c b/sim/arm/run.c index 0746bee..1d7bd46 100644 --- a/sim/arm/run.c +++ b/sim/arm/run.c @@ -30,6 +30,7 @@ void usage(); extern int optind; extern char *optarg; +int verbose = 0; int target_byte_order; int @@ -41,7 +42,6 @@ main (ac, av) bfd_vma start_address; asection *s; int i; - int verbose = 0; int trace = 0; char *name = ""; |