[llvm] [SandboxVec][Legality] Fix mask on diamond reuse with shuffle (PR #126963)

via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 12 12:57:07 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;
----------------
vporpo wrote:

Yeah this is dead code that I accidentally removed in the follow-up patch instead of this one, while maintaining the patch chain. I already pushed the fix: e75e61728e201f1941c794a12ea22789b6f24c75

https://github.com/llvm/llvm-project/pull/126963


More information about the llvm-commits mailing list