[llvm] [VectorCombine] Handle shuffle of selects (PR #128032)
via llvm-commits
llvm-commits at lists.llvm.org
Sat Feb 22 04:27:22 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 726c4b9f77862d83b6e5e16c8d5a2fc4fb1589a2 a07b930f9cf6aa4366c9c15a762faca4a57d04c8 --extensions cpp -- llvm/lib/Transforms/Vectorize/VectorCombine.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Transforms/Vectorize/VectorCombine.cpp b/llvm/lib/Transforms/Vectorize/VectorCombine.cpp
index fb305ff5c2..18f3478fee 100644
--- a/llvm/lib/Transforms/Vectorize/VectorCombine.cpp
+++ b/llvm/lib/Transforms/Vectorize/VectorCombine.cpp
@@ -1924,7 +1924,8 @@ bool VectorCombine::foldShuffleOfSelects(Instruction &I) {
OldCost += TTI.getCmpSelInstrCost(SelectOp, T2->getType(), C2VecTy,
CmpInst::BAD_ICMP_PREDICATE, CostKind);
OldCost += TTI.getShuffleCost(TargetTransformInfo::SK_PermuteTwoSrc, DstVecTy,
- Mask, CostKind, 0, nullptr, {I.getOperand(0), I.getOperand(1)}, &I);
+ Mask, CostKind, 0, nullptr,
+ {I.getOperand(0), I.getOperand(1)}, &I);
auto *C1C2VecTy = cast<FixedVectorType>(
toVectorTy(Type::getInt1Ty(I.getContext()), DstVecTy->getNumElements()));
``````````
</details>
https://github.com/llvm/llvm-project/pull/128032
More information about the llvm-commits
mailing list