[llvm] [LV] Added verification of EVL recipes (PR #107630)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Sep 16 07:18:49 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 711278e273826f3903cef448f433fe2135c569c6 d9e9d28981a5e27003aa496a21523332355d8f37 --extensions cpp -- llvm/lib/Transforms/Vectorize/VPlanVerifier.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Transforms/Vectorize/VPlanVerifier.cpp b/llvm/lib/Transforms/Vectorize/VPlanVerifier.cpp
index d9eb03876f..e871859e0f 100644
--- a/llvm/lib/Transforms/Vectorize/VPlanVerifier.cpp
+++ b/llvm/lib/Transforms/Vectorize/VPlanVerifier.cpp
@@ -36,9 +36,9 @@ class VPlanVerifier {
// VPHeaderPHIRecipes.
bool verifyPhiRecipes(const VPBasicBlock *VPBB);
- /// Verify that \p EVL is used correctly. The user must be either in EVL-based
- /// recipes as a last operand or VPInstruction::Add which is incoming value
- /// into EVL's recipe.
+ /// Verify that \p EVL is used correctly. The user must be either in
+ /// EVL-based recipes as a last operand or VPInstruction::Add which is
+ /// incoming value into EVL's recipe.
bool verifyEVLRecipe(const VPInstruction &EVL) const;
bool verifyVPBasicBlock(const VPBasicBlock *VPBB);
``````````
</details>
https://github.com/llvm/llvm-project/pull/107630
More information about the llvm-commits
mailing list