[llvm-branch-commits] [llvm] [SelectionDAG] Fold extracts of subvector inserts (PR #201271)
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Tue Jun 2 23:16:19 PDT 2026
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 origin/main HEAD --extensions cpp -- llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp --diff_from_common_commit
``````````
:warning:
The reproduction instructions above might return results for more than one PR
in a stack if you are using a stacked PR workflow. You can limit the results by
changing `origin/main` to the base branch/commit you want to compare against.
:warning:
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
index c9a4d8b9b..a53f37b22 100644
--- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
@@ -27674,9 +27674,8 @@ SDValue DAGCombiner::visitEXTRACT_SUBVECTOR(SDNode *N) {
InsSubVT.getVectorElementType() == NVT.getVectorElementType() &&
(InsIdx - ExtIdx) % NumInsElts == 0 &&
hasOperation(ISD::INSERT_SUBVECTOR, NVT)) {
- SDValue NewExtract =
- DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, NVT, Src,
- DAG.getVectorIdxConstant(ExtIdx, DL));
+ SDValue NewExtract = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, NVT, Src,
+ DAG.getVectorIdxConstant(ExtIdx, DL));
return DAG.getNode(ISD::INSERT_SUBVECTOR, DL, NVT, NewExtract, InsSub,
DAG.getVectorIdxConstant(InsIdx - ExtIdx, DL));
}
``````````
</details>
https://github.com/llvm/llvm-project/pull/201271
More information about the llvm-branch-commits
mailing list