[llvm] [AMDGPU] Fix for ControlFlowUtils reconnectPHIs. (PR #132954)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 25 09:45:55 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 bed4c581c2a73a437f13e278c0d654c01efb58a1 d7d07af1e53b6351be20ae2b19e44d9aa8530875 --extensions cpp -- llvm/lib/Transforms/Utils/ControlFlowUtils.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Transforms/Utils/ControlFlowUtils.cpp b/llvm/lib/Transforms/Utils/ControlFlowUtils.cpp
index 4b0065d003..23d039d0fa 100644
--- a/llvm/lib/Transforms/Utils/ControlFlowUtils.cpp
+++ b/llvm/lib/Transforms/Utils/ControlFlowUtils.cpp
@@ -246,7 +246,7 @@ static void reconnectPhis(BasicBlock *Out, BasicBlock *GuardBlock,
bool AllUndef = true;
for (auto [BB, Succ0, Succ1] : Incoming) {
Value *V = PoisonValue::get(Phi->getType());
- if (Phi->getBasicBlockIndex(BB) != -1) {
+ if (Phi->getBasicBlockIndex(BB) != -1) {
V = Phi->removeIncomingValue(BB, false);
if (BB == Out) {
V = NewPhi;
``````````
</details>
https://github.com/llvm/llvm-project/pull/132954
More information about the llvm-commits
mailing list