[llvm] [LV][NFC] Remove stray semicolons (PR #114057)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 29 06:54:46 PDT 2024
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff c0cba25cdd06d700bdc15e9ae48c1fcadd0963bd 8fc32e3f7216428b36d457c19eefe341c868ce15 --extensions cpp -- llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
index 7161aa52ca..150fc4a42b 100644
--- a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
+++ b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
@@ -581,8 +581,8 @@ protected:
/// 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;
``````````
</details>
https://github.com/llvm/llvm-project/pull/114057
More information about the llvm-commits
mailing list