aboutsummaryrefslogtreecommitdiff
path: root/gdb/dwarf2
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2021-03-24 14:41:13 -0600
committerTom Tromey <tom@tromey.com>2021-03-24 14:50:25 -0600
commitb64f703b51914e4e335e61492882a8137f75e082 (patch)
tree2f29611f21499eaeb920c359c1aa6e3bf843419a /gdb/dwarf2
parent68f115f8c088bafd7d60b1245867ee8f42ccfcef (diff)
downloadbinutils-b64f703b51914e4e335e61492882a8137f75e082.zip
binutils-b64f703b51914e4e335e61492882a8137f75e082.tar.gz
binutils-b64f703b51914e4e335e61492882a8137f75e082.tar.bz2
Remove 'kind' parameter from dw2_map_matching_symbols
I noticed that dw2_map_matching_symbols does not use its 'kind' parameter. This patch removes it. Tested by rebuilding. 2021-03-24 Tom Tromey <tom@tromey.com> * dwarf2/read.c (dw2_map_matching_symbols): Update. (dw2_expand_symtabs_matching_symbol): Remove 'kind' parameter. (check_match, dw2_expand_symtabs_matching) (dwarf2_debug_names_index::map_matching_symbols) (dwarf2_debug_names_index::expand_symtabs_matching): Update.
Diffstat (limited to 'gdb/dwarf2')
-rw-r--r--gdb/dwarf2/read.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/gdb/dwarf2/read.c b/gdb/dwarf2/read.c
index 2bfb13d..ee6f3f7 100644
--- a/gdb/dwarf2/read.c
+++ b/gdb/dwarf2/read.c
@@ -3798,7 +3798,6 @@ dw2_expand_symtabs_matching_symbol
(mapped_index_base &index,
const lookup_name_info &lookup_name_in,
gdb::function_view<expand_symtabs_symbol_matcher_ftype> symbol_matcher,
- enum search_domain kind,
gdb::function_view<bool (offset_type)> match_callback,
dwarf2_per_objfile *per_objfile);
@@ -3834,7 +3833,7 @@ dw2_map_matching_symbols
return ordered_compare (symname, match_name) == 0;
};
- dw2_expand_symtabs_matching_symbol (index, name, matcher, ALL_DOMAIN,
+ dw2_expand_symtabs_matching_symbol (index, name, matcher,
[&] (offset_type namei)
{
struct dw2_symtab_iterator iter;
@@ -4114,7 +4113,6 @@ dw2_expand_symtabs_matching_symbol
(mapped_index_base &index,
const lookup_name_info &lookup_name_in,
gdb::function_view<expand_symtabs_symbol_matcher_ftype> symbol_matcher,
- enum search_domain kind,
gdb::function_view<bool (offset_type)> match_callback,
dwarf2_per_objfile *per_objfile)
{
@@ -4288,7 +4286,7 @@ check_match (const char *file, int line,
auto expected_end = expected_list.end ();
dw2_expand_symtabs_matching_symbol (mock_index, lookup_name,
- NULL, ALL_DOMAIN,
+ nullptr,
[&] (offset_type idx)
{
const char *matched_name = mock_index.symbol_name_at (idx, per_objfile);
@@ -4864,7 +4862,7 @@ dw2_expand_symtabs_matching
dw2_expand_symtabs_matching_symbol (index, *lookup_name,
symbol_matcher,
- kind, [&] (offset_type idx)
+ [&] (offset_type idx)
{
dw2_expand_marked_cus (per_objfile, idx, file_matcher, expansion_notify,
kind);
@@ -5861,7 +5859,7 @@ dwarf2_debug_names_index::map_matching_symbols
return ordered_compare (symname, match_name) == 0;
};
- dw2_expand_symtabs_matching_symbol (map, name, matcher, ALL_DOMAIN,
+ dw2_expand_symtabs_matching_symbol (map, name, matcher,
[&] (offset_type namei)
{
/* The name was matched, now expand corresponding CUs that were
@@ -5927,7 +5925,7 @@ dwarf2_debug_names_index::expand_symtabs_matching
dw2_expand_symtabs_matching_symbol (map, *lookup_name,
symbol_matcher,
- kind, [&] (offset_type namei)
+ [&] (offset_type namei)
{
/* The name was matched, now expand corresponding CUs that were
marked. */