[llvm] [Utils][UnifyLoopExits] Avoid costly updates if nothing changed (PR #129179)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 27 20:48:28 PST 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 6e7f04266c5f729cf4bc5546e2bf29aad3e695f1 57b3455d89d340ca7a3da02a3efb478b4824f2d7 --extensions cpp,h -- llvm/include/llvm/Transforms/Utils/ControlFlowUtils.h llvm/lib/Transforms/Utils/ControlFlowUtils.cpp llvm/lib/Transforms/Utils/UnifyLoopExits.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Transforms/Utils/UnifyLoopExits.cpp b/llvm/lib/Transforms/Utils/UnifyLoopExits.cpp
index ede0f70c6e..0c2c72a9fd 100644
--- a/llvm/lib/Transforms/Utils/UnifyLoopExits.cpp
+++ b/llvm/lib/Transforms/Utils/UnifyLoopExits.cpp
@@ -173,8 +173,8 @@ static bool unifyLoopExits(DominatorTree &DT, LoopInfo &LI, Loop *L) {
bool ChangedCFG;
std::tie(LoopExitBlock, ChangedCFG) = CHub.finalize(
&DTU, GuardBlocks, "loop.exit", MaxBooleansInControlFlowHub.getValue());
-// if (!ChangedCFG)
-// return false;
+ // if (!ChangedCFG)
+ // return false;
L->getHeader()->getParent()->dump();
restoreSSA(DT, L, ExitingBlocks, LoopExitBlock);
``````````
</details>
https://github.com/llvm/llvm-project/pull/129179
More information about the llvm-commits
mailing list