diff options
Diffstat (limited to 'gdb/dwarf2')
-rw-r--r-- | gdb/dwarf2/read.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gdb/dwarf2/read.c b/gdb/dwarf2/read.c index 483c6fb..b6069c5 100644 --- a/gdb/dwarf2/read.c +++ b/gdb/dwarf2/read.c @@ -2214,7 +2214,7 @@ struct dwarf2_base_index_functions : public quick_symbol_functions return language_unknown; } - void print_stats (struct objfile *objfile) override; + void print_stats (struct objfile *objfile, bool print_bcache) override; void expand_all_symtabs (struct objfile *objfile) override; @@ -3681,8 +3681,12 @@ dwarf2_gdb_index::lookup_symbol (struct objfile *objfile, } void -dwarf2_base_index_functions::print_stats (struct objfile *objfile) +dwarf2_base_index_functions::print_stats (struct objfile *objfile, + bool print_bcache) { + if (print_bcache) + return; + dwarf2_per_objfile *per_objfile = get_dwarf2_per_objfile (objfile); int total = (per_objfile->per_bfd->all_comp_units.size () + per_objfile->per_bfd->all_type_units.size ()); |