[llvm] [ARM] Fix calling convention for __fp16 with big-endian (PR #126741)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 11 07:16:25 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 dd369c771e215ebf7bf2d09e874643788e49d334 30aabec049cef2bb0344a2a31b2591876ac0eb8f --extensions cpp -- llvm/lib/Target/ARM/ARMCallingConv.cpp llvm/lib/Target/ARM/ARMISelLowering.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Target/ARM/ARMISelLowering.cpp b/llvm/lib/Target/ARM/ARMISelLowering.cpp
index a856de4962..e349da4d48 100644
--- a/llvm/lib/Target/ARM/ARMISelLowering.cpp
+++ b/llvm/lib/Target/ARM/ARMISelLowering.cpp
@@ -4766,14 +4766,14 @@ SDValue ARMTargetLowering::LowerFormalArguments(
// in a 32-bit register, so the actual bytes used for the value
// differ between little and big endian.
unsigned FIOffset = VA.getLocMemOffset();
- int FI = MFI.CreateFixedObject(VA.getLocVT().getSizeInBits()/8,
+ int FI = MFI.CreateFixedObject(VA.getLocVT().getSizeInBits() / 8,
FIOffset, true);
// Create load nodes to retrieve arguments from the stack.
SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
SDValue Load = DAG.getLoad(VA.getLocVT(), dl, Chain, FIN,
- MachinePointerInfo::getFixedStack(
- DAG.getMachineFunction(), FI));
+ MachinePointerInfo::getFixedStack(
+ DAG.getMachineFunction(), FI));
InVals.push_back(
MoveToHPR(dl, DAG, VA.getLocVT(), VA.getValVT(), Load));
``````````
</details>
https://github.com/llvm/llvm-project/pull/126741
More information about the llvm-commits
mailing list