[llvm] llvm-dwarfdump --verify aggregated output to JSON file (PR #81762)

Greg Clayton via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 15 11:11:38 PST 2024


================
@@ -206,6 +206,7 @@ struct DIDumpOptions {
   bool IsEH = false;
   bool DumpNonSkeleton = false;
   bool ShowAggregateErrors = false;
+  std::string JsonSummaryFile = "";
----------------
clayborg wrote:

no need for the ` = ""`, the default constructor will do this and it won't have to run `strlen()` on the empty string.

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


More information about the llvm-commits mailing list