Skip to content

Commit 3c02fea

Browse files
authored
[LV][NFC] Remove stray semicolons (#114057)
1 parent 29bff4a commit 3c02fea

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

llvm/lib/Transforms/Vectorize/LoopVectorize.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -581,8 +581,8 @@ class InnerLoopVectorizer {
581581

582582
/// Allow subclasses to override and print debug traces before/after vplan
583583
/// execution, when trace information is requested.
584-
virtual void printDebugTracesAtStart(){};
585-
virtual void printDebugTracesAtEnd(){};
584+
virtual void printDebugTracesAtStart() {}
585+
virtual void printDebugTracesAtEnd() {}
586586

587587
/// The original loop.
588588
Loop *OrigLoop;
@@ -1310,7 +1310,7 @@ class LoopVectorizationCostModel {
13101310
return false;
13111311
case cl::BOU_FALSE:
13121312
return true;
1313-
};
1313+
}
13141314
llvm_unreachable("impossible case value");
13151315
}
13161316

@@ -9065,7 +9065,7 @@ LoopVectorizationPlanner::tryToBuildVPlanWithVPRecipes(VFRange &Range) {
90659065
if (!getDecisionAndClampRange(ApplyIG, Range))
90669066
continue;
90679067
InterleaveGroups.insert(IG);
9068-
};
9068+
}
90699069

90709070
// ---------------------------------------------------------------------------
90719071
// Construct recipes for the instructions in the loop

0 commit comments

Comments
 (0)