@@ -77,8 +77,8 @@ void ManualDWARFIndex::IndexImpl() {
7777 lldb::eDescriptionLevelBrief);
7878
7979 // Include 2 passes per unit to index for extracting DIEs from the unit and
80- // indexing the unit, and then extra entries for finalizing each index in
81- // the set.
80+ // indexing the unit, and then extra entries for finalizing each index in the
81+ // set.
8282 const auto indices = IndexSet<NameToDIE>::Indices ();
8383 const uint64_t total_progress = units_to_index.size () * 2 + indices.size ();
8484 Progress progress (" Manually indexing DWARF" , module_desc.GetData (),
@@ -113,10 +113,10 @@ void ManualDWARFIndex::IndexImpl() {
113113
114114 // Extract dies for all DWARFs unit in parallel. Figure out which units
115115 // didn't have their DIEs already parsed and remember this. If no DIEs were
116- // parsed prior to this index function call, we are going to want to clear
117- // the CU dies after we are done indexing to make sure we don't pull in all
118- // DWARF dies, but we need to wait until all units have been indexed in case
119- // a DIE in one unit refers to another and the indexes accesses those DIEs.
116+ // parsed prior to this index function call, we are going to want to clear the
117+ // CU dies after we are done indexing to make sure we don't pull in all DWARF
118+ // dies, but we need to wait until all units have been indexed in case a DIE
119+ // in one unit refers to another and the indexes accesses those DIEs.
120120 std::vector<std::optional<DWARFUnit::ScopedExtractDIEs>> clear_cu_dies (
121121 units_to_index.size ());
122122 for_each_unit ([&clear_cu_dies](size_t , size_t idx, DWARFUnit *unit) {
0 commit comments