diff options
author | Tom Tromey <tromey@redhat.com> | 2012-12-14 17:47:40 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2012-12-14 17:47:40 +0000 |
commit | 1993b71979c5e9cb66b067abfcb003b5d5cdab03 (patch) | |
tree | c8b48b6de6e818a6875b2765e1f0e0c9b0391f86 /gdb/jv-exp.y | |
parent | 2dc3df72a7ffca9a893ae41db8c3788c0019d59c (diff) | |
download | gdb-1993b71979c5e9cb66b067abfcb003b5d5cdab03.zip gdb-1993b71979c5e9cb66b067abfcb003b5d5cdab03.tar.gz gdb-1993b71979c5e9cb66b067abfcb003b5d5cdab03.tar.bz2 |
* c-exp.y (block, variable, name_not_typename, lex_one_token,
classify_name): Update.
* c-valprint.c (c_val_print): Update.
* f-exp.y (yylex): Update.
* go-exp.y (package_name_p, classify_packaged_name)
(classify_name): Update.
* jv-exp.y (push_variable): Update.
* m2-exp.y (variable): Update.
* mi/mi-cmd-stack.c (list_args_or_locals): Update.
* p-exp.y (block, variable, yylex): Update.
* p-valprint.c (pascal_val_print): Update.
* parse.c (write_dollar_variable): Update.
* printcmd.c (address_info): Update.
* python/py-symbol.c (gdbpy_lookup_symbol): Update.
* symtab.c (lookup_symbol_aux, lookup_symbol_in_language)
(lookup_symbol): Change type of 'is_a_field_of_this'.
(check_field): Add 'is_a_field_of_this' argument.
* symtab.h (struct field_of_this_result): New.
(lookup_symbol, lookup_symbol_in_language): Update.
Diffstat (limited to 'gdb/jv-exp.y')
-rw-r--r-- | gdb/jv-exp.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/jv-exp.y b/gdb/jv-exp.y index d0fca67..80ef7e3 100644 --- a/gdb/jv-exp.y +++ b/gdb/jv-exp.y @@ -1227,7 +1227,7 @@ static int push_variable (struct stoken name) { char *tmp = copy_name (name); - int is_a_field_of_this = 0; + struct field_of_this_result is_a_field_of_this; struct symbol *sym; sym = lookup_symbol (tmp, expression_context_block, VAR_DOMAIN, &is_a_field_of_this); @@ -1248,7 +1248,7 @@ push_variable (struct stoken name) write_exp_elt_opcode (OP_VAR_VALUE); return 1; } - if (is_a_field_of_this) + if (is_a_field_of_this.type != NULL) { /* it hangs off of `this'. Must not inadvertently convert from a method call to data ref. */ |