[llvm] [AArch64] Keep floating-point conversion in SIMD (PR #147707)

via llvm-commits llvm-commits at lists.llvm.org
Wed Jul 23 06:51:00 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 HEAD~1 HEAD --extensions cpp -- llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
``````````

</details>

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

``````````diff
diff --git a/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp b/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
index 0b0d79f95..3eb9e3de4 100644
--- a/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
+++ b/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
@@ -24029,9 +24029,9 @@ static SDValue combineBoolVectorAndTruncateStore(SelectionDAG &DAG,
 // Combine store (fp_to_int X) with optional extensions/trunctions to use vector
 // semantics when NEON is available.
 static void combineFPToIntStore(StoreSDNode *ST,
-                                   TargetLowering::DAGCombinerInfo &DCI,
-                                   SelectionDAG &DAG,
-                                   const AArch64Subtarget *Subtarget) {
+                                TargetLowering::DAGCombinerInfo &DCI,
+                                SelectionDAG &DAG,
+                                const AArch64Subtarget *Subtarget) {
   if (!Subtarget->isNeonAvailable())
     return;
 

``````````

</details>


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


More information about the llvm-commits mailing list