[llvm] [LoopPeel] Fix branch weights' effect on block frequencies (PR #128785)

via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 12 17:00:27 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 e619073f030239ff15fb134d13423733bb072239 843b4cf5646f33a96a075a2a4b3230d00b70ca8f --extensions h,cpp -- llvm/include/llvm/Transforms/Utils/LoopUtils.h llvm/lib/Transforms/Utils/LoopPeel.cpp llvm/lib/Transforms/Utils/LoopUtils.cpp
``````````

</details>

<details>
<summary>
View the diff from clang-format here.
</summary>

``````````diff
diff --git a/llvm/lib/Transforms/Utils/LoopPeel.cpp b/llvm/lib/Transforms/Utils/LoopPeel.cpp
index a81d55611f..f9be521b33 100644
--- a/llvm/lib/Transforms/Utils/LoopPeel.cpp
+++ b/llvm/lib/Transforms/Utils/LoopPeel.cpp
@@ -1030,7 +1030,7 @@ bool llvm::peelLoop(Loop *L, unsigned PeelCount, LoopInfo *LI,
     // about this case?
     unsigned EstimatedTripCountNew = *EstimatedTripCount;
     if (EstimatedTripCountNew < TotalPeeled) // FIXME: TotalPeeled + 2?
-      EstimatedTripCountNew = 0; // FIXME: = 2?
+      EstimatedTripCountNew = 0;             // FIXME: = 2?
     else
       EstimatedTripCountNew -= TotalPeeled;
     setLoopEstimatedTripCount(L, EstimatedTripCountNew,

``````````

</details>


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


More information about the llvm-commits mailing list