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:
parent
42edd901a2
commit
a778f165ad
@ -1,3 +1,9 @@
|
|||||||
|
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.
|
||||||
|
|
||||||
2017-07-20 Pedro Alves <palves@redhat.com>
|
2017-07-20 Pedro Alves <palves@redhat.com>
|
||||||
|
|
||||||
* block.c (block_iter_name_step, block_iter_name_first)
|
* block.c (block_iter_name_step, block_iter_name_first)
|
||||||
|
@ -3907,10 +3907,10 @@ dw2_lookup_symbol (struct objfile *objfile, int block_index,
|
|||||||
information (but NAME might contain it). */
|
information (but NAME might contain it). */
|
||||||
|
|
||||||
if (sym != NULL
|
if (sym != NULL
|
||||||
&& strcmp_iw (SYMBOL_SEARCH_NAME (sym), name) == 0)
|
&& SYMBOL_MATCHES_SEARCH_NAME (sym, name))
|
||||||
return stab;
|
return stab;
|
||||||
if (with_opaque != NULL
|
if (with_opaque != NULL
|
||||||
&& strcmp_iw (SYMBOL_SEARCH_NAME (with_opaque), name) == 0)
|
&& SYMBOL_MATCHES_SEARCH_NAME (with_opaque, name))
|
||||||
stab_best = stab;
|
stab_best = stab;
|
||||||
|
|
||||||
/* Keep looking through other CUs. */
|
/* Keep looking through other CUs. */
|
||||||
|
@ -529,10 +529,10 @@ psym_lookup_symbol (struct objfile *objfile,
|
|||||||
information (but NAME might contain it). */
|
information (but NAME might contain it). */
|
||||||
|
|
||||||
if (sym != NULL
|
if (sym != NULL
|
||||||
&& strcmp_iw (SYMBOL_SEARCH_NAME (sym), name) == 0)
|
&& SYMBOL_MATCHES_SEARCH_NAME (sym, name))
|
||||||
return stab;
|
return stab;
|
||||||
if (with_opaque != NULL
|
if (with_opaque != NULL
|
||||||
&& strcmp_iw (SYMBOL_SEARCH_NAME (with_opaque), name) == 0)
|
&& SYMBOL_MATCHES_SEARCH_NAME (with_opaque, name))
|
||||||
stab_best = stab;
|
stab_best = stab;
|
||||||
|
|
||||||
/* Keep looking through other psymtabs. */
|
/* Keep looking through other psymtabs. */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user