From 308d96edc1e82c7bb9440d20b868ee9dd93959ea Mon Sep 17 00:00:00 2001 From: Michael Snyder Date: Thu, 6 May 2010 19:41:12 +0000 Subject: [PATCH] 2010-05-06 Michael Snyder * macrocmd.c (_initialize_macrocmd): Delete unused variable. * macroexp.c (gather_arguments): Delete unused variable. (substitute_args): Delete unused variable. * completer.c (gdb_completer_loc_break_characters): Unused, delete. * gdbarch.sh (gdbarch_printable_names): Delete unused variable. (_initialize_gdbarch): Delete unused variable. * gdbarch.c, gdbarch.h: Regenerate. * arch-utils.c (initialize_current_architecture): Delete unused variable. (_initialize_gdbarch_utils): Delete unused variable. * gdbtypes.c (make_cv_type): Delete unused variable. (make_type_with_address_space): Delete unused variable. --- gdb/ChangeLog | 13 +++++++++++++ gdb/arch-utils.c | 2 -- gdb/completer.c | 4 ---- gdb/gdbarch.c | 3 --- gdb/gdbarch.sh | 3 --- gdb/gdbtypes.c | 6 ++---- gdb/macrocmd.c | 2 -- gdb/macroexp.c | 4 +--- 8 files changed, 16 insertions(+), 21 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 5955cd1..1962b15 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,18 @@ 2010-05-06 Michael Snyder + * macrocmd.c (_initialize_macrocmd): Delete unused variable. + * macroexp.c (gather_arguments): Delete unused variable. + (substitute_args): Delete unused variable. + * completer.c (gdb_completer_loc_break_characters): Unused, delete. + * gdbarch.sh (gdbarch_printable_names): Delete unused variable. + (_initialize_gdbarch): Delete unused variable. + * gdbarch.c, gdbarch.h: Regenerate. + * arch-utils.c (initialize_current_architecture): + Delete unused variable. + (_initialize_gdbarch_utils): Delete unused variable. + * gdbtypes.c (make_cv_type): Delete unused variable. + (make_type_with_address_space): Delete unused variable. + * linespec.c (decode_compound): Delete unused variable. * dictionary.c (iterator_next_hashed): Delete unused variable. * infcall.c (call_function_by_hand): Delete unused variable. diff --git a/gdb/arch-utils.c b/gdb/arch-utils.c index 765312d..b560175 100644 --- a/gdb/arch-utils.c +++ b/gdb/arch-utils.c @@ -652,7 +652,6 @@ initialize_current_architecture (void) /* Create the ``set architecture'' command appending ``auto'' to the list of architectures. */ { - struct cmd_list_element *c; /* Append ``auto''. */ int nr; for (nr = 0; arches[nr] != NULL; nr++); @@ -790,7 +789,6 @@ extern initialize_file_ftype _initialize_gdbarch_utils; /* -Wmissing-prototypes void _initialize_gdbarch_utils (void) { - struct cmd_list_element *c; add_setshow_enum_cmd ("endian", class_support, endian_enum, &set_endian_string, _("\ Set endianness of target."), _("\ diff --git a/gdb/completer.c b/gdb/completer.c index e678fb1..a095be0 100644 --- a/gdb/completer.c +++ b/gdb/completer.c @@ -79,10 +79,6 @@ static char *gdb_completer_file_name_break_characters = " \t\n*|\"';?><@"; static char *gdb_completer_file_name_break_characters = " \t\n*|\"';:?><"; #endif -/* These are used when completing on locations, which can mix file - names and symbol names separated by a colon. */ -static char *gdb_completer_loc_break_characters = " \t\n*|\"';:?><,"; - /* Characters that can be used to quote completion strings. Note that we can't include '"' because the gdb C parser treats such quoted sequences as strings. */ diff --git a/gdb/gdbarch.c b/gdb/gdbarch.c index fa08fe0..3b6f614 100644 --- a/gdb/gdbarch.c +++ b/gdb/gdbarch.c @@ -3849,7 +3849,6 @@ gdbarch_printable_names (void) { /* Accumulate a list of names based on the registed list of architectures. */ - enum bfd_architecture a; int nr_arches = 0; const char **arches = NULL; struct gdbarch_registration *rego; @@ -4084,8 +4083,6 @@ extern void _initialize_gdbarch (void); void _initialize_gdbarch (void) { - struct cmd_list_element *c; - add_setshow_zinteger_cmd ("arch", class_maintenance, &gdbarch_debug, _("\ Set architecture debugging."), _("\ Show architecture debugging."), _("\ diff --git a/gdb/gdbarch.sh b/gdb/gdbarch.sh index 121ca7c..81c5dc2 100755 --- a/gdb/gdbarch.sh +++ b/gdb/gdbarch.sh @@ -1866,7 +1866,6 @@ gdbarch_printable_names (void) { /* Accumulate a list of names based on the registed list of architectures. */ - enum bfd_architecture a; int nr_arches = 0; const char **arches = NULL; struct gdbarch_registration *rego; @@ -2101,8 +2100,6 @@ extern void _initialize_gdbarch (void); void _initialize_gdbarch (void) { - struct cmd_list_element *c; - add_setshow_zinteger_cmd ("arch", class_maintenance, &gdbarch_debug, _("\\ Set architecture debugging."), _("\\ Show architecture debugging."), _("\\ diff --git a/gdb/gdbtypes.c b/gdb/gdbtypes.c index a40b717..cf23f17 100644 --- a/gdb/gdbtypes.c +++ b/gdb/gdbtypes.c @@ -540,7 +540,6 @@ make_qualified_type (struct type *type, int new_flags, struct type * make_type_with_address_space (struct type *type, int space_flag) { - struct type *ntype; int new_flags = ((TYPE_INSTANCE_FLAGS (type) & ~(TYPE_INSTANCE_FLAG_CODE_SPACE | TYPE_INSTANCE_FLAG_DATA_SPACE @@ -567,11 +566,10 @@ make_cv_type (int cnst, int voltl, struct type **typeptr) { struct type *ntype; /* New type */ - struct type *tmp_type = type; /* tmp type */ - struct objfile *objfile; int new_flags = (TYPE_INSTANCE_FLAGS (type) - & ~(TYPE_INSTANCE_FLAG_CONST | TYPE_INSTANCE_FLAG_VOLATILE)); + & ~(TYPE_INSTANCE_FLAG_CONST + | TYPE_INSTANCE_FLAG_VOLATILE)); if (cnst) new_flags |= TYPE_INSTANCE_FLAG_CONST; diff --git a/gdb/macrocmd.c b/gdb/macrocmd.c index bbf64b5..eab815b 100644 --- a/gdb/macrocmd.c +++ b/gdb/macrocmd.c @@ -387,8 +387,6 @@ extern initialize_file_ftype _initialize_macrocmd; /* -Wmissing-prototypes */ void _initialize_macrocmd (void) { - struct cmd_list_element *c; - /* We introduce a new command prefix, `macro', under which we'll put the various commands for working with preprocessor macros. */ add_prefix_cmd ("macro", class_info, macro_command, diff --git a/gdb/macroexp.c b/gdb/macroexp.c index 050fbbf..0bd65f6 100644 --- a/gdb/macroexp.c +++ b/gdb/macroexp.c @@ -805,8 +805,6 @@ gather_arguments (const char *name, struct macro_buffer *src, depth = 0; for (;;) { - char *start = src->text; - if (! get_token (&tok, src)) error (_("Malformed argument list for macro `%s'."), name); @@ -1004,7 +1002,7 @@ substitute_args (struct macro_buffer *dest, && lookahead.text[0] == '#' && lookahead.text[1] == '#') { - int arg, finished = 0; + int finished = 0; int prev_was_comma = 0; /* Note that GCC warns if the result of splicing is not a -- 2.7.4