Zap -Wuninitialized warnings.

This commit is contained in:
Andrew Cagney 2001-03-20 17:19:04 +00:00
parent 764f1408a3
commit 8e2eec6299
2 changed files with 13 additions and 7 deletions

View File

@ -1,3 +1,8 @@
2001-03-20 Andrew Cagney <ac131313@redhat.com>
* mi-cmd-disas.c (mi_cmd_disassemble): Initialize ``file_string''
and ``line_num''. Consolidate declaration of argument variables.
2001-03-19 Andrew Cagney <ac131313@redhat.com>
* mi-out.h: Remove #ifdef __STDC__.

View File

@ -112,15 +112,9 @@ mi_cmd_disassemble (char *command, char **argv, int argc)
{
CORE_ADDR pc;
CORE_ADDR start;
CORE_ADDR low = 0;
CORE_ADDR high = 0;
int how_many = -1;
int mixed_source_and_assembly;
int num_displayed;
int line_num;
char *file_string;
static disassemble_info di;
static int di_initialized;
@ -136,13 +130,20 @@ mi_cmd_disassemble (char *command, char **argv, int argc)
char *filename = NULL;
char *name = NULL;
/* Which options have we processed? */
/* Which options have we processed ... */
int file_seen = 0;
int line_seen = 0;
int num_seen = 0;
int start_seen = 0;
int end_seen = 0;
/* ... and their corresponding value. */
char *file_string = NULL;
int line_num = -1;
int how_many = -1;
CORE_ADDR low = 0;
CORE_ADDR high = 0;
/* Options processing stuff. */
int optind = 0;
char *optarg;