@@ -2671,8 +2671,8 @@ struct VPWidenLoadRecipe final : public VPWidenMemoryRecipe, public VPValue {
2671
2671
bool onlyFirstLaneUsed (const VPValue *Op) const override {
2672
2672
assert (is_contained (operands (), Op) &&
2673
2673
" Op must be an operand of the recipe" );
2674
- // Widened, consecutive loads operations only demand the first lane of their
2675
- // address.
2674
+ // Widened, consecutive loads operations only demand the first lane of
2675
+ // their address.
2676
2676
return Op == getAddr () && isConsecutive ();
2677
2677
}
2678
2678
};
@@ -2711,8 +2711,8 @@ struct VPWidenLoadEVLRecipe final : public VPWidenMemoryRecipe, public VPValue {
2711
2711
bool onlyFirstLaneUsed (const VPValue *Op) const override {
2712
2712
assert (is_contained (operands (), Op) &&
2713
2713
" Op must be an operand of the recipe" );
2714
- // Widened loads only demand the first lane of EVL and consecutive/strided
2715
- // loads only demand the first lane of their address.
2714
+ // Widened loads only demand the first lane of EVL and consecutive loads
2715
+ // only demand the first lane of their address.
2716
2716
return Op == getEVL () || (Op == getAddr () && isConsecutive ());
2717
2717
}
2718
2718
};
@@ -2799,8 +2799,8 @@ struct VPWidenStoreRecipe final : public VPWidenMemoryRecipe {
2799
2799
bool onlyFirstLaneUsed (const VPValue *Op) const override {
2800
2800
assert (is_contained (operands (), Op) &&
2801
2801
" Op must be an operand of the recipe" );
2802
- // Widened, consecutive stores only demand the first lane of their
2803
- // address, unless the same operand is also stored.
2802
+ // Widened, consecutive stores only demand the first lane of their address,
2803
+ // unless the same operand is also stored.
2804
2804
return Op == getAddr () && isConsecutive () && Op != getStoredValue ();
2805
2805
}
2806
2806
};
0 commit comments