[llvm] Modify dwarf verification JSON to include detailed counts by sub-category (PR #128018)

via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 25 14:04:12 PST 2025


================
@@ -30,18 +30,29 @@ class DWARFDebugAbbrev;
 class DataExtractor;
 struct DWARFSection;
 
+struct AggregationData {
+  unsigned OverallCount;
+  std::map<std::string, unsigned> DetailedCounts;
+  AggregationData() = default;
----------------
youngd007 wrote:

I can double check, but the original PR would not build or run without the constructor defined.

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


More information about the llvm-commits mailing list