[llvm] [AMDGPU][CodeGen] Utilized MBB's liveIn check in SILowerSGPRSpills (PR #129848)

via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 7 00:10: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 41473162fd886d7db548fb288cf3620570f73c17 e5325757070a1f57c7ef134f1961bda3acb24e5f --extensions cpp -- llvm/lib/Target/AMDGPU/SILowerSGPRSpills.cpp
``````````

</details>

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

``````````diff
diff --git a/llvm/lib/Target/AMDGPU/SILowerSGPRSpills.cpp b/llvm/lib/Target/AMDGPU/SILowerSGPRSpills.cpp
index c283ed0ac9..dc84db9a07 100644
--- a/llvm/lib/Target/AMDGPU/SILowerSGPRSpills.cpp
+++ b/llvm/lib/Target/AMDGPU/SILowerSGPRSpills.cpp
@@ -128,7 +128,7 @@ static void insertCSRSaves(MachineBasicBlock &SaveBlock,
       // range.
       bool IsLiveIn = false;
       for (MCRegAliasIterator R(Reg, TRI, true); R.isValid(); ++R) {
-        if(SaveBlock.isLiveIn(*R)) {
+        if (SaveBlock.isLiveIn(*R)) {
           IsLiveIn = true;
           break;
         }

``````````

</details>


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


More information about the llvm-commits mailing list