[llvm] [SDAG] Pass pointer type to libcall expansion for SoftenFloatRes stack slots (PR #130647)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 10 10:59:50 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 ab18cc246c2490564043161db5d9646cf1163de4 f31c962d703e22035c64faa61e391f7ce2174071 --extensions cpp,h -- llvm/include/llvm/CodeGen/TargetLowering.h llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.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/LegalizeFloatTypes.cpp b/llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
index 51de89ac6f..894d717bbb 100644
--- a/llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
@@ -776,12 +776,12 @@ SDValue DAGTypeLegalizer::SoftenFloatRes_FFREXP(SDNode *N) {
TargetLowering::MakeLibCallOptions CallOptions;
SDValue Ops[2] = {GetSoftenedFloat(N->getOperand(0)), StackSlot};
EVT OpsVT[2] = {VT0, StackSlot.getValueType()};
- Type* CallOpsTypeOverrides[2] = { nullptr, PointerTy };
+ Type *CallOpsTypeOverrides[2] = {nullptr, PointerTy};
// TODO: setTypeListBeforeSoften can't properly express multiple return types,
// but we only really need to handle the 0th one for softening anyway.
CallOptions.setTypeListBeforeSoften({OpsVT}, VT0, true)
- .setOpsTypeOverrides(CallOpsTypeOverrides);
+ .setOpsTypeOverrides(CallOpsTypeOverrides);
auto [ReturnVal, Chain] = TLI.makeLibCall(DAG, LC, NVT0, Ops, CallOptions, DL,
/*Chain=*/SDValue());
``````````
</details>
https://github.com/llvm/llvm-project/pull/130647
More information about the llvm-commits
mailing list