[llvm] Modify dwarf verification JSON to include detailed counts by sub-category (PR #128018)
Miro Bucko via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 25 11:25:28 PST 2025
================
@@ -30,18 +30,29 @@ class DWARFDebugAbbrev;
class DataExtractor;
struct DWARFSection;
+struct AggregationData {
+ unsigned OverallCount;
+ std::map<std::string, unsigned> DetailedCounts;
+ AggregationData() = default;
----------------
mbucko wrote:
Don't need the ctor
https://github.com/llvm/llvm-project/pull/128018
More information about the llvm-commits
mailing list