[Lldb-commits] [lldb] Expose DWARFDIE::GetDeclContext() in lldb_private::Function. (PR #69981)

Michael Buch via lldb-commits lldb-commits at lists.llvm.org
Mon Oct 23 16:28:23 PDT 2023


================
@@ -322,10 +322,12 @@ std::vector<CompilerContext> parseCompilerContext() {
     }
     result.push_back({kind, ConstString{value}});
   }
-  outs() << "Search context: {\n";
-  for (auto entry: result)
-    entry.Dump();
-  outs() << "}\n";
+  outs() << "Search context: {";
+  lldb_private::StreamString s;
+  llvm::interleave(
----------------
Michael137 wrote:

`interleaveComma`

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


More information about the lldb-commits mailing list