diff options
author | Michael Snyder <msnyder@vmware.com> | 2010-05-06 00:08:44 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2010-05-06 00:08:44 +0000 |
commit | 8c5630cb0862b06f1ee546a303a8550e424c8bbc (patch) | |
tree | 7e07fc394f59a97ea6951fa0db06602b36dddf75 /gdb/c-exp.y | |
parent | d11bdf9018bbb8e1a150fb9254b511cf9cfc4a26 (diff) | |
download | gdb-8c5630cb0862b06f1ee546a303a8550e424c8bbc.zip gdb-8c5630cb0862b06f1ee546a303a8550e424c8bbc.tar.gz gdb-8c5630cb0862b06f1ee546a303a8550e424c8bbc.tar.bz2 |
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.
Diffstat (limited to 'gdb/c-exp.y')
-rw-r--r-- | gdb/c-exp.y | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/c-exp.y b/gdb/c-exp.y index 2577a99..44fa690 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)) |