[llvm] [SandboxVec][Legality] Fix mask on diamond reuse with shuffle (PR #126963)
Florian Mayer via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 12 12:52:51 PST 2025
================
@@ -202,14 +202,20 @@ CollectDescr
LegalityAnalysis::getHowToCollectValues(ArrayRef<Value *> Bndl) const {
SmallVector<CollectDescr::ExtractElementDescr, 4> Vec;
Vec.reserve(Bndl.size());
- for (auto [Lane, V] : enumerate(Bndl)) {
+ uint32_t LaneAccum;
----------------
fmayer wrote:
We use this uninitialized in `LaneAccum += VLanes;`
https://github.com/llvm/llvm-project/pull/126963
More information about the llvm-commits
mailing list