[llvm] [LV][NFC] Remove stray semicolons (PR #114057)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 29 06:51:58 PDT 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-vectorizers
Author: Piotr Fusik (pfusik)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/114057.diff
1 Files Affected:
- (modified) llvm/lib/Transforms/Vectorize/LoopVectorize.cpp (+4-4)
``````````diff
diff --git a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
index 778d928252e051..7161aa52ca48eb 100644
--- a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
+++ b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
@@ -581,8 +581,8 @@ class InnerLoopVectorizer {
/// Allow subclasses to override and print debug traces before/after vplan
/// execution, when trace information is requested.
- virtual void printDebugTracesAtStart(){};
- virtual void printDebugTracesAtEnd(){};
+ virtual void printDebugTracesAtStart(){}
+ virtual void printDebugTracesAtEnd(){}
/// The original loop.
Loop *OrigLoop;
@@ -1310,7 +1310,7 @@ class LoopVectorizationCostModel {
return false;
case cl::BOU_FALSE:
return true;
- };
+ }
llvm_unreachable("impossible case value");
}
@@ -9065,7 +9065,7 @@ LoopVectorizationPlanner::tryToBuildVPlanWithVPRecipes(VFRange &Range) {
if (!getDecisionAndClampRange(ApplyIG, Range))
continue;
InterleaveGroups.insert(IG);
- };
+ }
// ---------------------------------------------------------------------------
// Construct recipes for the instructions in the loop
``````````
</details>
https://github.com/llvm/llvm-project/pull/114057
More information about the llvm-commits
mailing list