[llvm] [AMDGPU] Skip handling of non-byte types in promote alloca. (PR #128769)
Sumanth Gundapaneni via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 27 08:25:13 PST 2025
================
@@ -759,6 +759,14 @@ bool AMDGPUPromoteAllocaImpl::tryPromoteAllocaToVector(AllocaInst &Alloca) {
return false;
}
+ Type *VecEltTy = VectorTy->getElementType();
+ constexpr unsigned SIZE_OF_BYTE = 8;
+ unsigned ElementSizeInBits = DL->getTypeSizeInBits(VecEltTy);
+ // FIXME: The non-byte type like i1 can be packed and be supported, but
+ // currently we do not handle them.
+ if (ElementSizeInBits % SIZE_OF_BYTE != 0)
----------------
sgundapa wrote:
Thanks. Will do
https://github.com/llvm/llvm-project/pull/128769
More information about the llvm-commits
mailing list