[llvm] [llvm-dwarfdump] Make --verify for .debug_names multithreaded. (PR #127281)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 18 06:37:29 PST 2025
================
@@ -32,7 +33,9 @@ struct DWARFSection;
class OutputCategoryAggregator {
private:
+ std::mutex WriteMutex;
std::map<std::string, unsigned> Aggregation;
+ unsigned NumErrors = 0;
bool IncludeDetail;
----------------
youngd007 wrote:
@ayermolo can you make sure you have the latest. I actually had just modified the output aggregator to start tracking sub-categories for the JSON. See https://github.com/llvm/llvm-project/pull/125062/files
There also were some tests added for JSON that would be good to run. They _might_ be running on the build jobs assuming it would merge up to latest. Less clear how github works 🤷♂️
https://github.com/llvm/llvm-project/pull/127281
More information about the llvm-commits
mailing list