* 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
@ -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 = "";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user