diff options
author | Amir Ayupov <aaupov@fb.com> | 2025-05-01 12:39:08 -0700 |
---|---|---|
committer | Amir Ayupov <aaupov@fb.com> | 2025-05-01 12:39:08 -0700 |
commit | 2f62c313bf84520eb4d3f0a8745004e6af9b5ae4 (patch) | |
tree | a94e0d957050621844659a50a0559d829509592c | |
parent | 2acb371ded2e4e53d7c1eeb92ab8f5d45fbc836c (diff) | |
download | llvm-users/aaupov/spr/boltnfci-simplify-dataaggregator-using-traces.zip llvm-users/aaupov/spr/boltnfci-simplify-dataaggregator-using-traces.tar.gz llvm-users/aaupov/spr/boltnfci-simplify-dataaggregator-using-traces.tar.bz2 |
Created using spr 1.3.4
-rw-r--r-- | bolt/lib/Profile/DataAggregator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bolt/lib/Profile/DataAggregator.cpp b/bolt/lib/Profile/DataAggregator.cpp index 4e42e0d..f74cf02 100644 --- a/bolt/lib/Profile/DataAggregator.cpp +++ b/bolt/lib/Profile/DataAggregator.cpp @@ -1469,7 +1469,7 @@ void DataAggregator::processBranchEvents() { NamedRegionTimer T("processBranch", "Processing branch events", TimerGroupName, TimerGroupDesc, opts::TimeAggregator); - for (const auto &[Trace, Info]: Traces) { + for (const auto &[Trace, Info] : Traces) { if (Trace.From != Trace.To) doBranch(Trace.From, Trace.To, Info.TakenCount, Info.MispredCount); if (Trace.FallthroughEnd) |