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.
This commit is contained in:
parent
d11bdf9018
commit
8c5630cb08
6 changed files with 13 additions and 8 deletions
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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))
|
||||
|
|
|
@ -1541,7 +1541,7 @@ yylex (void)
|
|||
{
|
||||
int c;
|
||||
int namelen;
|
||||
const char *tokstart, *tokptr;
|
||||
const char *tokstart;
|
||||
|
||||
retry:
|
||||
prev_lexptr = lexptr;
|
||||
|
|
|
@ -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++)
|
||||
|
|
|
@ -1085,7 +1085,6 @@ yylex ()
|
|||
char *tokstart;
|
||||
char *uptokstart;
|
||||
char *tokptr;
|
||||
char *p;
|
||||
int explen, tempbufindex;
|
||||
static char *tempbuf;
|
||||
static int tempbufsize;
|
||||
|
|
Loading…
Reference in a new issue