diff options
Diffstat (limited to 'gdb/symfile-debug.c')
-rw-r--r-- | gdb/symfile-debug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/symfile-debug.c b/gdb/symfile-debug.c index 59dbaf1..f1a8f5e 100644 --- a/gdb/symfile-debug.c +++ b/gdb/symfile-debug.c @@ -257,14 +257,14 @@ objfile::lookup_symbol (block_enum kind, const char *name, domain_enum domain) information (but NAME might contain it). */ if (sym != NULL - && SYMBOL_MATCHES_SEARCH_NAME (sym, lookup_name)) + && symbol_matches_search_name (sym, lookup_name)) { retval = stab; /* Found it. */ return false; } if (with_opaque != NULL - && SYMBOL_MATCHES_SEARCH_NAME (with_opaque, lookup_name)) + && symbol_matches_search_name (with_opaque, lookup_name)) retval = stab; /* Keep looking through other psymtabs. */ |