diff -uprN src0/gdb/c-exp.y src1/gdb/c-exp.y --- src0/gdb/c-exp.y 2009-07-09 17:20:15.000000000 -0400 +++ src1/gdb/c-exp.y 2009-08-05 16:45:17.000000000 -0400 @@ -1569,7 +1569,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 diff -uprN src0/gdb/f-exp.y src1/gdb/f-exp.y --- src0/gdb/f-exp.y 2009-05-26 09:56:21.000000000 -0400 +++ src1/gdb/f-exp.y 2009-08-05 16:47:29.000000000 -0400 @@ -567,6 +567,13 @@ ptype : typebase case tp_function: follow_type = lookup_function_type (follow_type); break; + case tp_const: + /* FIXME: */ + case tp_volatile: + /* FIXME: */ + case tp_space_identifier: + /* FIXME: */ + break; } $$ = follow_type; } diff -uprN src0/gdb/jv-exp.y src1/gdb/jv-exp.y --- src0/gdb/jv-exp.y 2009-07-06 09:28:19.000000000 -0400 +++ src1/gdb/jv-exp.y 2009-08-05 16:46:27.000000000 -0400 @@ -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 -uprN src0/gdb/p-exp.y src1/gdb/p-exp.y --- src0/gdb/p-exp.y 2009-05-26 09:56:19.000000000 -0400 +++ src1/gdb/p-exp.y 2009-08-05 16:47:49.000000000 -0400 @@ -1084,7 +1084,6 @@ yylex () char *tokstart; char *uptokstart; char *tokptr; - char *p; int explen, tempbufindex; static char *tempbuf; static int tempbufsize;