From 8c5630cb0862b06f1ee546a303a8550e424c8bbc Mon Sep 17 00:00:00 2001 From: Michael Snyder Date: Thu, 6 May 2010 00:08:44 +0000 Subject: [PATCH] 2010-05-05 Michael Snyder * c-exp.y (parse_string_or_char): Delete unused variable. (c_lex): Delete unused variable. * cp-name-parser.y (cpname_lex): Delete unused variable. * ada-exp.y (find_primitive_type): Delete unused variable. (write_var_or_type): Delete unused variable. * jv-exp.y (java_parse): Delete unused variable. (push_expression_name): Delete unused variable. * p-exp.y (pascal_lex): Delete unused variable. --- gdb/ChangeLog | 11 +++++++++++ gdb/ada-exp.y | 2 -- gdb/c-exp.y | 3 +-- gdb/cp-name-parser.y | 2 +- gdb/jv-exp.y | 2 -- gdb/p-exp.y | 1 - 6 files changed, 13 insertions(+), 8 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index a4c32bf75d..8b7f9673f0 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,14 @@ +2010-05-05 Michael Snyder + + * c-exp.y (parse_string_or_char): Delete unused variable. + (c_lex): Delete unused variable. + * cp-name-parser.y (cpname_lex): Delete unused variable. + * ada-exp.y (find_primitive_type): Delete unused variable. + (write_var_or_type): Delete unused variable. + * jv-exp.y (java_parse): Delete unused variable. + (push_expression_name): Delete unused variable. + * p-exp.y (pascal_lex): Delete unused variable. + 2010-05-05 Pedro Alves * remote.c (remote_threads_info): Really revert previous previous diff --git a/gdb/ada-exp.y b/gdb/ada-exp.y index d47f6a785d..722db2fc07 100644 --- a/gdb/ada-exp.y +++ b/gdb/ada-exp.y @@ -1091,7 +1091,6 @@ find_primitive_type (char *name) { /* Check to see if we have a regular definition of this type that just didn't happen to have been read yet. */ - int ntypes; struct symbol *sym; char *expanded_name = (char *) alloca (strlen (name) + sizeof ("standard__")); @@ -1366,7 +1365,6 @@ write_var_or_type (struct block *block, struct stoken name0) } else if (nsyms == 0) { - int i; struct minimal_symbol *msym = ada_lookup_simple_minsym (encoded_name); if (msym != NULL) diff --git a/gdb/c-exp.y b/gdb/c-exp.y index 2577a99398..44fa690544 100644 --- a/gdb/c-exp.y +++ b/gdb/c-exp.y @@ -1708,7 +1708,7 @@ static int parse_string_or_char (char *tokptr, char **outptr, struct typed_stoken *value, int *host_chars) { - int quote, i; + int quote; enum c_string_type type; /* Build the gdb internal form of the input string in tempbuf. Note @@ -2437,7 +2437,6 @@ static int yylex (void) { token_and_value current; - char *name; int first_was_coloncolon, last_was_coloncolon, first_iter; if (popping && !VEC_empty (token_and_value, token_fifo)) diff --git a/gdb/cp-name-parser.y b/gdb/cp-name-parser.y index 81f6a5d6ed..6d7b600a95 100644 --- a/gdb/cp-name-parser.y +++ b/gdb/cp-name-parser.y @@ -1541,7 +1541,7 @@ yylex (void) { int c; int namelen; - const char *tokstart, *tokptr; + const char *tokstart; retry: prev_lexptr = lexptr; diff --git a/gdb/jv-exp.y b/gdb/jv-exp.y index a904c3295f..8109e0c59a 100644 --- a/gdb/jv-exp.y +++ b/gdb/jv-exp.y @@ -547,7 +547,6 @@ CastExpression: write_exp_elt_opcode (UNOP_CAST); } | '(' Expression ')' UnaryExpressionNotPlusMinus { - int exp_size = expout_ptr; int last_exp_size = length_of_subexp(expout, expout_ptr); struct type *type; int i; @@ -1358,7 +1357,6 @@ push_expression_name (struct stoken name) { char *tmp; struct type *typ; - char *ptr; int i; for (i = 0; i < name.length; i++) diff --git a/gdb/p-exp.y b/gdb/p-exp.y index c034fbbdd4..fce3fc7966 100644 --- a/gdb/p-exp.y +++ b/gdb/p-exp.y @@ -1085,7 +1085,6 @@ yylex () char *tokstart; char *uptokstart; char *tokptr; - char *p; int explen, tempbufindex; static char *tempbuf; static int tempbufsize; -- 2.34.1