Skip to content

Commit acbca4a

Browse files
committed
!fixup fix formatting
1 parent 7f9235c commit acbca4a

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

llvm/lib/Transforms/Vectorize/VPlan.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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"));

llvm/lib/Transforms/Vectorize/VPlanValue.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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.

0 commit comments

Comments
 (0)