Skip to content

Commit 73519ba

Browse files
authored
Revert "[lldb] Read Checksum from DWARF line tables" (#71864)
Reverts #71458 as it might have caused cross-project-test failures.
1 parent a2d9d2e commit 73519ba

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -229,15 +229,8 @@ ParseSupportFilesFromPrologue(const lldb::ModuleSP &module,
229229
remapped_file = std::move(*file_path);
230230
}
231231

232-
Checksum checksum;
233-
if (prologue.ContentTypes.HasMD5) {
234-
const llvm::DWARFDebugLine::FileNameEntry &file_name_entry =
235-
prologue.getFileNameEntry(idx);
236-
checksum = file_name_entry.Checksum;
237-
}
238-
239232
// Unconditionally add an entry, so the indices match up.
240-
support_files.EmplaceBack(remapped_file, style, checksum);
233+
support_files.EmplaceBack(remapped_file, style);
241234
}
242235

243236
return support_files;

0 commit comments

Comments
 (0)