* 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.
This commit is contained in:
parent
708f6147e4
commit
e47e480588
1 changed files with 1 additions and 1 deletions
|
@ -30,6 +30,7 @@ void usage();
|
||||||
extern int optind;
|
extern int optind;
|
||||||
extern char *optarg;
|
extern char *optarg;
|
||||||
|
|
||||||
|
int verbose = 0;
|
||||||
int target_byte_order;
|
int target_byte_order;
|
||||||
|
|
||||||
int
|
int
|
||||||
|
@ -41,7 +42,6 @@ main (ac, av)
|
||||||
bfd_vma start_address;
|
bfd_vma start_address;
|
||||||
asection *s;
|
asection *s;
|
||||||
int i;
|
int i;
|
||||||
int verbose = 0;
|
|
||||||
int trace = 0;
|
int trace = 0;
|
||||||
char *name = "";
|
char *name = "";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue