* armdefs.h (ARMul_State): New member `verbose'.
authorDavid Edelsohn <dje.gcc@gmail.com>
Sat, 18 Nov 1995 03:39:17 +0000 (03:39 +0000)
committerDavid Edelsohn <dje.gcc@gmail.com>
Sat, 18 Nov 1995 03:39:17 +0000 (03:39 +0000)
* 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.

sim/arm/run.c

index 0746bee92999ab0dc89cc132de77906907ae5380..1d7bd46af8ff21014bf5a0bd481360dffd75cac7 100644 (file)
@@ -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 = "";
 
This page took 0.024401 seconds and 4 git commands to generate.