File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
llvm/lib/Transforms/Vectorize Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -3454,7 +3454,8 @@ class VPlan {
34543454 VPlan (Loop *L, Type *InductionTy);
34553455
34563456 // / Construct a VPlan with a new VPBasicBlock as entry, a VPIRBasicBlock
3457- // / wrapping \p ScalarHeaderBB and a trip count of \p TC. Also creates symbolic VectorTripCount, VF and VFxUF VPValues using \p InductionTy.
3457+ // / wrapping \p ScalarHeaderBB and a trip count of \p TC. Also creates
3458+ // / symbolic VectorTripCount, VF and VFxUF VPValues using \p InductionTy.
34583459 VPlan (BasicBlock *ScalarHeaderBB, VPValue *TC, Type *InductionTy)
34593460 : VectorTripCount(InductionTy), VF(InductionTy), VFxUF(InductionTy) {
34603461 setEntry (createVPBasicBlock (" preheader" ));
Original file line number Diff line number Diff line change @@ -181,7 +181,8 @@ class VPValue {
181181 // / Returns true if this VPValue is a live-in, i.e. defined outside the VPlan.
182182 bool isLiveIn () const { return !hasDefiningRecipe (); }
183183
184- // / Returns true if the VPValue is symbolic, that is a live-in without underlying value.
184+ // / Returns true if the VPValue is symbolic, that is a live-in without
185+ // / underlying value.
185186 bool isSymbolic () const { return SubclassID == VPSymbolicValueSC; }
186187
187188 // / If the VPValue is a live-in, return its scalar type.
You can’t perform that action at this time.
0 commit comments