summaryrefslogtreecommitdiff
path: root/gdb/language.h
diff options
context:
space:
mode:
authorDoug Evans <xdje42@gmail.com>2014-12-23 07:24:48 -0800
committerDoug Evans <xdje42@gmail.com>2014-12-23 07:24:48 -0800
commitf606139ae8aa873f6294aaf3bf599d18c3025023 (patch)
tree89f5cfaabc835c5d29cc046e3cd2b6bc13564edb /gdb/language.h
parent08be3fe322244a3684d007d9282e225fc215f5d8 (diff)
downloadbinutils-gdb-f606139ae8aa873f6294aaf3bf599d18c3025023.tar.gz
Add langdef arg to la_lookup_symbol_nonlocal.
gdb/ChangeLog: * language.h (struct language_defn) <la_lookup_symbol_nonlocal>: New arg language_defn. All uses updated.
Diffstat (limited to 'gdb/language.h')
-rw-r--r--gdb/language.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/language.h b/gdb/language.h
index aa07d8dada0..2a47e645344 100644
--- a/gdb/language.h
+++ b/gdb/language.h
@@ -262,7 +262,8 @@ struct language_defn
the part of symbol lookup where C looks up static and global
variables. */
- struct symbol *(*la_lookup_symbol_nonlocal) (const char *,
+ struct symbol *(*la_lookup_symbol_nonlocal) (const struct language_defn *,
+ const char *,
const struct block *,
const domain_enum);