[llvm] [RISCV] Move RISCV vector load/store searchable tables from RISCVISelDAGToDAG.cpp to RISCVBaseInfo.cpp. NFC (PR #129172)

via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 27 17:52:03 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 9e257b0abcfc53e76bf4b1986a1e71986cdbabbc 5a757c9d563583e51847d34f39ed2978c01ed404 --extensions cpp,h -- llvm/lib/Target/RISCV/MCTargetDesc/RISCVBaseInfo.cpp llvm/lib/Target/RISCV/MCTargetDesc/RISCVBaseInfo.h llvm/lib/Target/RISCV/RISCVISelDAGToDAG.cpp llvm/lib/Target/RISCV/RISCVISelDAGToDAG.h
``````````

</details>

<details>
<summary>
View the diff from clang-format here.
</summary>

``````````diff
diff --git a/llvm/lib/Target/RISCV/MCTargetDesc/RISCVBaseInfo.h b/llvm/lib/Target/RISCV/MCTargetDesc/RISCVBaseInfo.h
index 6a87ffd0c8..433be1f1e8 100644
--- a/llvm/lib/Target/RISCV/MCTargetDesc/RISCVBaseInfo.h
+++ b/llvm/lib/Target/RISCV/MCTargetDesc/RISCVBaseInfo.h
@@ -716,7 +716,7 @@ struct VLEPseudo {
 };
 
 struct VSEPseudo {
-  uint16_t Masked :1;
+  uint16_t Masked : 1;
   uint16_t Strided : 1;
   uint16_t Log2SEW : 3;
   uint16_t LMUL : 3;

``````````

</details>


https://github.com/llvm/llvm-project/pull/129172


More information about the llvm-commits mailing list