[llvm] [AArch64][GlobalISel] Clean up CTLZ vector type legalization. (PR #131514)

via llvm-commits llvm-commits at lists.llvm.org
Sun Mar 16 05:39: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 215c0d2b651dc757378209a3edaff1a130338dd8 31b902ecdaf076ace49e0a228820ae6019350c51 --extensions cpp -- llvm/lib/CodeGen/GlobalISel/LegalizerHelper.cpp llvm/lib/Target/AArch64/GISel/AArch64LegalizerInfo.cpp
``````````

</details>

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

``````````diff
diff --git a/llvm/lib/Target/AArch64/GISel/AArch64LegalizerInfo.cpp b/llvm/lib/Target/AArch64/GISel/AArch64LegalizerInfo.cpp
index ebb7230033..3270a81453 100644
--- a/llvm/lib/Target/AArch64/GISel/AArch64LegalizerInfo.cpp
+++ b/llvm/lib/Target/AArch64/GISel/AArch64LegalizerInfo.cpp
@@ -327,13 +327,13 @@ AArch64LegalizerInfo::AArch64LegalizerInfo(const AArch64Subtarget &ST)
 
   getActionDefinitionsBuilder(G_CTLZ)
       .legalFor({{s32, s32},
-                  {s64, s64},
-                  {v8s8, v8s8},
-                  {v16s8, v16s8},
-                  {v4s16, v4s16},
-                  {v8s16, v8s16},
-                  {v2s32, v2s32},
-                  {v4s32, v4s32}})
+                 {s64, s64},
+                 {v8s8, v8s8},
+                 {v16s8, v16s8},
+                 {v4s16, v4s16},
+                 {v8s16, v8s16},
+                 {v2s32, v2s32},
+                 {v4s32, v4s32}})
       .widenScalarToNextPow2(1, /*Min=*/32)
       .clampScalar(1, s32, s64)
       .clampNumElements(0, v8s8, v16s8)

``````````

</details>


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


More information about the llvm-commits mailing list