[Lldb-commits] [lldb] [lldb] Read Checksum from DWARF line tables (PR #71458)

Greg Clayton via lldb-commits lldb-commits at lists.llvm.org
Tue Nov 7 11:18:00 PST 2023


================
@@ -443,6 +455,9 @@ class FileSpec {
   /// The unique'd filename path.
   ConstString m_filename;
 
+  /// The optional MD5 checksum of the file.
+  Checksum m_checksum;
+
----------------
clayborg wrote:

We are increasing the size of all FileSpec objects by 16 bytes here. Is. it possible to do these checks another way? The FileSpec is already 24 bytes, now it will be 40.  

https://github.com/llvm/llvm-project/pull/71458


More information about the lldb-commits mailing list