[llvm] [RISCV] Allow spilling to unused Zcmp Stack (PR #125959)

via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 5 15:35:43 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 585b75ec9aa5be3594bcd28077f6b2e0a198dec4 946648134744d4dc072a8334ae19cfa421d50fbc --extensions cpp -- llvm/lib/Target/RISCV/RISCVFrameLowering.cpp
``````````

</details>

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

``````````diff
diff --git a/llvm/lib/Target/RISCV/RISCVFrameLowering.cpp b/llvm/lib/Target/RISCV/RISCVFrameLowering.cpp
index c125a7f017..bc56ded479 100644
--- a/llvm/lib/Target/RISCV/RISCVFrameLowering.cpp
+++ b/llvm/lib/Target/RISCV/RISCVFrameLowering.cpp
@@ -1850,7 +1850,8 @@ bool RISCVFrameLowering::assignCalleeSavedSpillSlots(
   if (RVFI->isPushable(MF)) {
     // Allocate a fixed object that covers all the registers that are pushed.
     if (unsigned PushedRegs = RVFI->getRVPushRegs()) {
-      int64_t PushedRegsBytes = static_cast<int64_t>(PushedRegs) * (STI.getXLen() / 8);
+      int64_t PushedRegsBytes =
+          static_cast<int64_t>(PushedRegs) * (STI.getXLen() / 8);
       MFI.CreateFixedSpillStackObject(PushedRegsBytes, -PushedRegsBytes);
     }
   } else if (int LibCallRegs = getLibCallID(MF, CSI) + 1) {

``````````

</details>


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


More information about the llvm-commits mailing list