[llvm] [AMDGPU] NFC: Add BBLiveOutMap & LiveOut Cache (PR #93089)
via llvm-commits
llvm-commits at lists.llvm.org
Thu May 23 11:10:58 PDT 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 470aefb240dee7d791875284b9917bf641ca971a 9f2f32bb361e46e088914b804fcb635c2970c66a -- llvm/lib/Target/AMDGPU/GCNSchedStrategy.cpp llvm/lib/Target/AMDGPU/GCNSchedStrategy.h
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Target/AMDGPU/GCNSchedStrategy.cpp b/llvm/lib/Target/AMDGPU/GCNSchedStrategy.cpp
index 6f792ce243..215fe79cfc 100644
--- a/llvm/lib/Target/AMDGPU/GCNSchedStrategy.cpp
+++ b/llvm/lib/Target/AMDGPU/GCNSchedStrategy.cpp
@@ -648,7 +648,7 @@ GCNScheduleDAGMILive::getBBLiveOutMap() const {
for (; I != E; I++)
BBEnders.push_back(getLastMIForRegion(I->first, I->second));
- return getLiveRegMap(BBEnders, /*After= */true, *LIS);
+ return getLiveRegMap(BBEnders, /*After= */ true, *LIS);
}
void GCNScheduleDAGMILive::finalizeSchedule() {
``````````
</details>
https://github.com/llvm/llvm-project/pull/93089
More information about the llvm-commits
mailing list