[llvm-branch-commits] [BOLT][NFCI] Simplify DataAggregator using traces (PR #138181)
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Thu May 1 12:02:44 PDT 2025
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff HEAD~1 HEAD --extensions h,cpp -- bolt/include/bolt/Profile/DataAggregator.h bolt/lib/Profile/DataAggregator.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/bolt/lib/Profile/DataAggregator.cpp b/bolt/lib/Profile/DataAggregator.cpp
index 4e42e0d80..f74cf0264 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)
``````````
</details>
https://github.com/llvm/llvm-project/pull/138181
More information about the llvm-branch-commits
mailing list