[llvm] [AMDGPU] Skip handling of non-byte types in promote alloca. (PR #128769)
Sumanth Gundapaneni via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 25 13:23:39 PST 2025
================
@@ -776,8 +784,7 @@ bool AMDGPUPromoteAllocaImpl::tryPromoteAllocaToVector(AllocaInst &Alloca) {
LLVM_DEBUG(dbgs() << " Attempting promotion to: " << *VectorTy << "\n");
- Type *VecEltTy = VectorTy->getElementType();
- unsigned ElementSize = DL->getTypeSizeInBits(VecEltTy) / 8;
+ unsigned ElementSize = ElementSizeInBits / SIZE_OF_BYTE;
----------------
sgundapa wrote:
I have defined it to be "constexpr unsigned SIZE_OF_BYTE = 8" in line 763. Probably pick a different name ?
https://github.com/llvm/llvm-project/pull/128769
More information about the llvm-commits
mailing list