[llvm] [AMDGPU][PromoteAlloca] Don't stop when an alloca is too big to promote (PR #93466)
via llvm-commits
llvm-commits at lists.llvm.org
Mon May 27 05:48:13 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 8760d4ba4cb12d5cac2469f26cd09a2b3acd3c50 7de93557b909c49927de217671d2414c88f66b28 -- llvm/lib/Target/AMDGPU/AMDGPUPromoteAlloca.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Target/AMDGPU/AMDGPUPromoteAlloca.cpp b/llvm/lib/Target/AMDGPU/AMDGPUPromoteAlloca.cpp
index fbda8f973d..33474e7de0 100644
--- a/llvm/lib/Target/AMDGPU/AMDGPUPromoteAlloca.cpp
+++ b/llvm/lib/Target/AMDGPU/AMDGPUPromoteAlloca.cpp
@@ -347,7 +347,9 @@ bool AMDGPUPromoteAllocaImpl::run(Function &F, bool PromoteToLDS) {
continue;
}
} else {
- LLVM_DEBUG(dbgs() << "Alloca too big for vectorization (size:" << AllocaCost << ", budget:" << VectorizationBudget << "): " << *AI << "\n");
+ LLVM_DEBUG(dbgs() << "Alloca too big for vectorization (size:"
+ << AllocaCost << ", budget:" << VectorizationBudget
+ << "): " << *AI << "\n");
}
if (PromoteToLDS && tryPromoteAllocaToLDS(*AI, SufficientLDS))
``````````
</details>
https://github.com/llvm/llvm-project/pull/93466
More information about the llvm-commits
mailing list