]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Remove 'kind' parameter from dw2_map_matching_symbols
authorTom Tromey <tom@tromey.com>
Wed, 24 Mar 2021 20:41:13 +0000 (14:41 -0600)
committerTom Tromey <tom@tromey.com>
Wed, 24 Mar 2021 20:50:25 +0000 (14:50 -0600)
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.

gdb/ChangeLog
gdb/dwarf2/read.c

index bd869661f69c508c0094b1fc6a2f7e023d985d31..fd19ae0419593c7d41f683ada76eaae0f5721a62 100644 (file)
@@ -1,3 +1,11 @@
+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.
+
 2021-03-24  Keith Seitz  <keiths@redhat.com>
 
        * compile/compile-cplus-types.c
index 2bfb13d6d0ea14e81703d57e8af73d69e59c7e59..ee6f3f7f7e14f722ec9bb6780563fa0bbbe268cc 100644 (file)
@@ -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.  */