[llvm] [LowerBufferFatPointers] Fix support for GEP T, p7, <N x T> idxs (PR #126126)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 6 19:49:15 PST 2025
================
@@ -1804,14 +1804,26 @@ PtrParts SplitPtrStructs::visitGetElementPtrInst(GetElementPtrInst &GEP) {
bool IsNUW = GEP.hasNoUnsignedWrap();
bool IsNUSW = GEP.hasNoUnsignedSignedWrap();
+ Type *ResTy = GEP.getType();
+ std::optional<ElementCount> ResEC;
----------------
arsenm wrote:
I don't see the point of ResEC, can just use the `dyn_cast<VectorType>` result later?
https://github.com/llvm/llvm-project/pull/126126
More information about the llvm-commits
mailing list