File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
llvm/lib/Transforms/Vectorize Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2408,11 +2408,11 @@ class LLVM_ABI_FOR_TEST VPInterleaveRecipe : public VPRecipeBase {
2408
2408
// TODO: extend the masked interleaved-group support to reversed access.
2409
2409
assert ((!Mask || !IG->isReverse ()) &&
2410
2410
" Reversed masked interleave-group not supported." );
2411
- for (unsigned i = 0 ; i < IG->getFactor (); ++i )
2412
- if (Instruction *I = IG->getMember (i )) {
2413
- if (I ->getType ()->isVoidTy ())
2411
+ for (unsigned I = 0 ; I < IG->getFactor (); ++I )
2412
+ if (Instruction *Inst = IG->getMember (I )) {
2413
+ if (Inst ->getType ()->isVoidTy ())
2414
2414
continue ;
2415
- new VPValue (I , this );
2415
+ new VPValue (Inst , this );
2416
2416
}
2417
2417
2418
2418
for (auto *SV : StoredValues)
You can’t perform that action at this time.
0 commit comments