[Lldb-commits] [lldb] Support statistics dump summary only mode (PR #80745)

Alex Langford via lldb-commits lldb-commits at lists.llvm.org
Mon Feb 5 15:54:18 PST 2024


================
@@ -186,6 +186,10 @@ class SymbolFileDWARF : public SymbolFileCommon {
   GetMangledNamesForFunction(const std::string &scope_qualified_name,
                              std::vector<ConstString> &mangled_names) override;
 
+  // Return total currently loaded debug info.
+  // For cases like .dwo files, the debug info = skeleton debug info + all dwo
+  // debug info where .dwo files might not be loaded yet. Calling this function
+  // will not force the loading of any .dwo files.
----------------
bulbazord wrote:

Could you make this into a proper doxygen comment? With `///` instead of `//`

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


More information about the lldb-commits mailing list