Remove two trivial functions from dwarf2/read.c
authorTom Tromey <tom@tromey.com>
Thu, 1 Apr 2021 00:28:28 +0000 (18:28 -0600)
committerTom Tromey <tom@tromey.com>
Thu, 1 Apr 2021 00:28:30 +0000 (18:28 -0600)
This removes dw2_map_matching_symbols and dw2_expand_symtabs_matching,
merging them with their sole trivial callers.

gdb/ChangeLog
2021-03-31  Tom Tromey  <tom@tromey.com>

* dwarf2/read.c (dwarf2_gdb_index::map_matching_symbols): Merge
with dw2_map_matching_symbols.
(dwarf2_gdb_index::expand_symtabs_matching): Merge with
dw2_expand_symtabs_matching.

gdb/ChangeLog
gdb/dwarf2/read.c

index d4db1fdc653f05d0a7013f0b6ad4a67dfa3d32f0..36b2e0e3099e5b1c916affa5298ac50f4c47e891 100644 (file)
@@ -1,3 +1,10 @@
+2021-03-31  Tom Tromey  <tom@tromey.com>
+
+       * dwarf2/read.c (dwarf2_gdb_index::map_matching_symbols): Merge
+       with dw2_map_matching_symbols.
+       (dwarf2_gdb_index::expand_symtabs_matching): Merge with
+       dw2_expand_symtabs_matching.
+
 2021-03-31  Tom Tromey  <tromey@adacore.com>
 
        * dwarf2/stringify.h: Fix typo.
index 24183014cf4b3d77faa5fb1c9d493b3b4b3e1156..a83c5f94d54399865ff15e05f36aa51ce7eb701a 100644 (file)
@@ -3837,8 +3837,8 @@ dw2_expand_symtabs_matching_one
    gdb::function_view<expand_symtabs_file_matcher_ftype> file_matcher,
    gdb::function_view<expand_symtabs_exp_notify_ftype> expansion_notify);
 
-static void
-dw2_map_matching_symbols
+void
+dwarf2_gdb_index::map_matching_symbols
   (struct objfile *objfile,
    const lookup_name_info &name, domain_enum domain,
    int global,
@@ -3895,18 +3895,6 @@ dw2_map_matching_symbols
     }
 }
 
-void
-dwarf2_gdb_index::map_matching_symbols
-  (struct objfile *objfile,
-   const lookup_name_info &name, domain_enum domain,
-   int global,
-   gdb::function_view<symbol_found_callback_ftype> callback,
-   symbol_compare_ftype *ordered_compare)
-{
-  dw2_map_matching_symbols (objfile, name, domain, global, callback,
-                           ordered_compare);
-}
-
 /* Starting from a search name, return the string that finds the upper
    bound of all strings that start with SEARCH_NAME in a sorted name
    list.  Returns the empty string to indicate that the upper bound is
@@ -4858,14 +4846,14 @@ dw_expand_symtabs_matching_file_matcher
     }
 }
 
-static void
-dw2_expand_symtabs_matching
-  (struct objfile *objfile,
-   gdb::function_view<expand_symtabs_file_matcher_ftype> file_matcher,
-   const lookup_name_info *lookup_name,
-   gdb::function_view<expand_symtabs_symbol_matcher_ftype> symbol_matcher,
-   gdb::function_view<expand_symtabs_exp_notify_ftype> expansion_notify,
-   enum search_domain kind)
+void
+dwarf2_gdb_index::expand_symtabs_matching
+    (struct objfile *objfile,
+     gdb::function_view<expand_symtabs_file_matcher_ftype> file_matcher,
+     const lookup_name_info *lookup_name,
+     gdb::function_view<expand_symtabs_symbol_matcher_ftype> symbol_matcher,
+     gdb::function_view<expand_symtabs_exp_notify_ftype> expansion_notify,
+     enum search_domain kind)
 {
   dwarf2_per_objfile *per_objfile = get_dwarf2_per_objfile (objfile);
 
@@ -4899,19 +4887,6 @@ dw2_expand_symtabs_matching
     }, per_objfile);
 }
 
-void
-dwarf2_gdb_index::expand_symtabs_matching
-    (struct objfile *objfile,
-     gdb::function_view<expand_symtabs_file_matcher_ftype> file_matcher,
-     const lookup_name_info *lookup_name,
-     gdb::function_view<expand_symtabs_symbol_matcher_ftype> symbol_matcher,
-     gdb::function_view<expand_symtabs_exp_notify_ftype> expansion_notify,
-     enum search_domain kind)
-{
-  dw2_expand_symtabs_matching (objfile, file_matcher, lookup_name,
-                              symbol_matcher, expansion_notify, kind);
-}
-
 /* A helper for dw2_find_pc_sect_compunit_symtab which finds the most specific
    symtab.  */