[llvm] [RISCV] Collect shuffle mask for the lane not by createSequentialMask (PR #129830)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 4 21:24:17 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 e42ab4c54eca0e792a0ae461481f9acbd0260363 cd71fa5952808c86a8ef70745df90c96672a7621 --extensions cpp -- llvm/lib/Target/RISCV/RISCVISelLowering.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Target/RISCV/RISCVISelLowering.cpp b/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
index 54206aba01..31529d0add 100644
--- a/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
+++ b/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
@@ -23064,8 +23064,7 @@ bool RISCVTargetLowering::lowerInterleavedStore(StoreInst *SI,
NewShuffleMask.push_back(Mask[i + Factor * j]);
Value *Shuffle = Builder.CreateShuffleVector(
- SVI->getOperand(0), SVI->getOperand(1),
- NewShuffleMask);
+ SVI->getOperand(0), SVI->getOperand(1), NewShuffleMask);
Ops.push_back(Shuffle);
NewShuffleMask.clear();
``````````
</details>
https://github.com/llvm/llvm-project/pull/129830
More information about the llvm-commits
mailing list