[llvm] Porting `LowerFP_TO_INT()` and LowerINT_TO_FP()` to `TargetLowering.cpp` (PR #118831)

via llvm-commits llvm-commits at lists.llvm.org
Thu Dec 5 09:15:59 PST 2024


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 b6c0f1bfa79a3a32d841ac5ab1f94c3aee3b5d90 a1d09724c318aa24c8bd26b90a6dd62fb4125784 --extensions cpp -- llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
``````````

</details>

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

``````````diff
diff --git a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
index 0f21eae788..d841c5504d 100644
--- a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
@@ -8417,10 +8417,9 @@ bool TargetLowering::expandUINT_TO_FP(SDNode *Node, SDValue &Result,
     SDLoc Loc(Node);
     SDValue Operand = Node->getOperand(0);
 
-    Result = DAG.getNode(
-        ISD::FP_ROUND, Loc, MVT::bf16,
-        DAG.getNode(ISD::UINT_TO_FP, Loc, MVT::f32, Operand),
-        DAG.getIntPtrConstant(0, Loc));
+    Result = DAG.getNode(ISD::FP_ROUND, Loc, MVT::bf16,
+                         DAG.getNode(ISD::UINT_TO_FP, Loc, MVT::f32, Operand),
+                         DAG.getIntPtrConstant(0, Loc));
     return true;
   }
 

``````````

</details>


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


More information about the llvm-commits mailing list