diff options
author | Doug Evans <xdje42@gmail.com> | 2014-11-18 08:54:06 -0800 |
---|---|---|
committer | Doug Evans <xdje42@gmail.com> | 2014-11-18 08:54:06 -0800 |
commit | aff0895837de06af4e16b809d1f2eb17930297ad (patch) | |
tree | 54ec348c2e3c8aaceb27257337bb0eb6e1efb20c /gdb/parse.c | |
parent | 7bab9b58fd9c05c20cbd56d778ffa05d9fe3af3e (diff) | |
download | gdb-aff0895837de06af4e16b809d1f2eb17930297ad.zip gdb-aff0895837de06af4e16b809d1f2eb17930297ad.tar.gz gdb-aff0895837de06af4e16b809d1f2eb17930297ad.tar.bz2 |
Use SYMBOL_OBJFILE more.
gdb/ChangeLog:
* cp-namespace.c (cp_lookup_symbol_imports_or_template): Use
SYMBOL_OBJFILE.
* findvar.c (default_read_var_value): Ditto.
* jv-lang.c (add_class_symtab_symbol): Ditto.
* parse.c (operator_check_standard): Ditto.
* printcmd.c (address_info): Ditto.
* symtab.c (fixup_symbol_section): Ditto.
(skip_prologue_sal): Ditto.
* tracepoint.c (scope_info): Ditto.
* valops.c (find_function_in_inferior): Ditto.
* guile/scm-symbol.c (syscm_eq_symbol_smob): Ditto.
* python/py-symbol.c (set_symbol): Ditto.
Diffstat (limited to 'gdb/parse.c')
-rw-r--r-- | gdb/parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/parse.c b/gdb/parse.c index 7a6c1ee..5540a79 100644 --- a/gdb/parse.c +++ b/gdb/parse.c @@ -1809,7 +1809,7 @@ operator_check_standard (struct expression *exp, int pos, /* Check objfile where the variable itself is placed. SYMBOL_OBJ_SECTION (symbol) may be NULL. */ - if ((*objfile_func) (SYMBOL_SYMTAB (symbol)->objfile, data)) + if ((*objfile_func) (SYMBOL_OBJFILE (symbol), data)) return 1; /* Check objfile where is placed the code touching the variable. */ |