[llvm] [AMDGPU] Remove the AnnotateKernelFeatures pass (PR #130198)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Apr 3 16:31:24 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 HEAD~1 HEAD --extensions cpp,h -- llvm/lib/Target/AMDGPU/AMDGPU.h llvm/lib/Target/AMDGPU/AMDGPUAnnotateKernelFeatures.cpp llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp llvm/lib/Target/AMDGPU/GCNSubtarget.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Target/AMDGPU/GCNSubtarget.cpp b/llvm/lib/Target/AMDGPU/GCNSubtarget.cpp
index 8b42dd1f8..c309df8e5 100644
--- a/llvm/lib/Target/AMDGPU/GCNSubtarget.cpp
+++ b/llvm/lib/Target/AMDGPU/GCNSubtarget.cpp
@@ -628,9 +628,11 @@ GCNUserSGPRUsageInfo::GCNUserSGPRUsageInfo(const Function &F,
if (ST.hasFlatAddressSpace() && AMDGPU::isEntryFunctionCC(CC) &&
(IsAmdHsaOrMesa || ST.enableFlatScratch()) &&
- // FlatScratchInit cannot be true for graphics CC if enableFlatScratch() is false.
+ // FlatScratchInit cannot be true for graphics CC if enableFlatScratch()
+ // is false.
(ST.enableFlatScratch() ||
- (!AMDGPU::isGraphics(CC) && !F.hasFnAttribute("amdgpu-no-flat-scratch-init"))) &&
+ (!AMDGPU::isGraphics(CC) &&
+ !F.hasFnAttribute("amdgpu-no-flat-scratch-init"))) &&
!ST.flatScratchIsArchitected()) {
FlatScratchInit = true;
}
``````````
</details>
https://github.com/llvm/llvm-project/pull/130198
More information about the llvm-commits
mailing list