summaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog11
-rw-r--r--gdb/ada-exp.y2
-rw-r--r--gdb/c-exp.y3
-rw-r--r--gdb/cp-name-parser.y2
-rw-r--r--gdb/jv-exp.y2
-rw-r--r--gdb/p-exp.y1
6 files changed, 13 insertions, 8 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index a4c32bf75d0..8b7f9673f05 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,14 @@
+2010-05-05 Michael Snyder <msnyder@vmware.com>
+
+ * 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 <pedro@codesourcery.com>
* remote.c (remote_threads_info): Really revert previous previous
diff --git a/gdb/ada-exp.y b/gdb/ada-exp.y
index d47f6a785d8..722db2fc079 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 2577a99398e..44fa6905446 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 81f6a5d6edc..6d7b600a954 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 a904c3295f5..8109e0c59a8 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 c034fbbdd4d..fce3fc79665 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;