forked from Imagelibrary/binutils-gdb
Use SYMBOL_MATCHES_SEARCH_NAME some more
gdb/ChangeLog: 2017-07-20 Pedro Alves <palves@redhat.com> * dwarf2read.c (dw2_lookup_symbol): Use SYMBOL_MATCHES_SEARCH_NAME. * psymtab.c (psym_lookup_symbol): Use SYMBOL_MATCHES_SEARCH_NAME.
This commit is contained in:
@@ -529,10 +529,10 @@ psym_lookup_symbol (struct objfile *objfile,
|
||||
information (but NAME might contain it). */
|
||||
|
||||
if (sym != NULL
|
||||
&& strcmp_iw (SYMBOL_SEARCH_NAME (sym), name) == 0)
|
||||
&& SYMBOL_MATCHES_SEARCH_NAME (sym, name))
|
||||
return stab;
|
||||
if (with_opaque != NULL
|
||||
&& strcmp_iw (SYMBOL_SEARCH_NAME (with_opaque), name) == 0)
|
||||
&& SYMBOL_MATCHES_SEARCH_NAME (with_opaque, name))
|
||||
stab_best = stab;
|
||||
|
||||
/* Keep looking through other psymtabs. */
|
||||
|
||||
Reference in New Issue
Block a user