[llvm] [InstCombine] Enable select freeze poison folding when storing value (PR #129776)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 12 22:52:08 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 397696bb3d26c1298bf265e4907b0b6416ad59c9 dcf20b2ea9fe03f43f9f6826810be74268b231c2 --extensions cpp -- llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp b/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
index 99d9bc6855..9af201f24d 100644
--- a/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
+++ b/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
@@ -4854,7 +4854,7 @@ Instruction *InstCombinerImpl::visitFreeze(FreezeInst &I) {
// unspecified inputs.
if (isUsedWithinShuffleVector(&I))
return nullptr;
- if(auto *Replace = getValueReplacement())
+ if (auto *Replace = getValueReplacement())
return replaceInstUsesWith(I, Replace);
else
return replaceInstUsesWith(I, getConstantReplacement(I.getType()));
``````````
</details>
https://github.com/llvm/llvm-project/pull/129776
More information about the llvm-commits
mailing list