[Lldb-commits] [lldb] Add `target modules dump separate-debug-info` (PR #66035)

via lldb-commits lldb-commits at lists.llvm.org
Fri Oct 6 12:02:55 PDT 2023


================
@@ -1462,6 +1464,87 @@ static bool DumpModuleSymbolFile(Stream &strm, Module *module) {
   return false;
 }
 
+static bool GetSeparateDebugInfoList(StructuredData::Array &list,
+                                     Module *module) {
+  if (module) {
+    if (SymbolFile *symbol_file = module->GetSymbolFile(true)) {
----------------
jeffreytan81 wrote:

What is `true` meaning here? Add an inline comment.

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


More information about the lldb-commits mailing list