diff options
author | Pedro Alves <palves@redhat.com> | 2018-01-10 23:14:08 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2018-01-10 23:14:08 +0000 |
commit | a3dc9ae700a0f74bb1781be6334cfab04cf93caf (patch) | |
tree | aaae1635083b1e0f3a24c48028ebe8e87d44afed /gdb/language.h | |
parent | 2707f065bea6f20db9296dbda4577ce45b69093a (diff) | |
download | binutils-a3dc9ae700a0f74bb1781be6334cfab04cf93caf.zip binutils-a3dc9ae700a0f74bb1781be6334cfab04cf93caf.tar.gz binutils-a3dc9ae700a0f74bb1781be6334cfab04cf93caf.tar.bz2 |
language_get_symbol_name_matcher -> get_symbol_name_matcher
Rename language_get_symbol_name_matcher -> get_symbol_name_matcher,
since the function is no longer a straight "language method".
gdb/ChangeLog:
2018-01-10 Pedro Alves <palves@redhat.com>
* language.h (language_get_symbol_name_matcher): Rename ...
(get_symbol_name_matcher): ... this.
* language.c (language_get_symbol_name_matcher): Ditto.
* dictionary.c, linespec.c, minsyms.c, psymtab.c, symtab.c: All
callers adjusted.
Diffstat (limited to 'gdb/language.h')
-rw-r--r-- | gdb/language.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/language.h b/gdb/language.h index 5061095..06b42ae 100644 --- a/gdb/language.h +++ b/gdb/language.h @@ -637,7 +637,7 @@ extern bool default_symbol_name_matcher the function may ignore it depending on the current language and LOOKUP_NAME. Specifically, if the current language is Ada, this may return an Ada matcher regardless of LANG. */ -symbol_name_matcher_ftype *language_get_symbol_name_matcher +symbol_name_matcher_ftype *get_symbol_name_matcher (const language_defn *lang, const lookup_name_info &lookup_name); /* The languages supported by GDB. */ |