[llvm] [LV] Fix ScalarIVSteps vplan pattern matcher, remove m_CanonicalIV() (PR #138298)
via llvm-commits
llvm-commits at lists.llvm.org
Tue May 13 08:53:11 PDT 2025
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 HEAD~1 HEAD --extensions cpp,h -- llvm/unittests/Transforms/Vectorize/VPlanPatternMatchTest.cpp llvm/lib/Transforms/Vectorize/VPlanPatternMatch.h llvm/lib/Transforms/Vectorize/VPlanUtils.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/unittests/Transforms/Vectorize/VPlanPatternMatchTest.cpp b/llvm/unittests/Transforms/Vectorize/VPlanPatternMatchTest.cpp
index 9b02ceb7e..e38b4fad8 100644
--- a/llvm/unittests/Transforms/Vectorize/VPlanPatternMatchTest.cpp
+++ b/llvm/unittests/Transforms/Vectorize/VPlanPatternMatchTest.cpp
@@ -44,8 +44,9 @@ TEST_F(VPPatternMatchTest, ScalarIVSteps) {
ASSERT_TRUE(match(Steps, m_ScalarIVSteps(m_Specific(CanonicalIVPHI),
m_SpecificInt(1), m_Specific(VF))));
- ASSERT_FALSE(match(Steps2, m_ScalarIVSteps(m_Specific(CanonicalIVPHI),
- m_SpecificInt(1), m_Specific(VF))));
+ ASSERT_FALSE(
+ match(Steps2, m_ScalarIVSteps(m_Specific(CanonicalIVPHI),
+ m_SpecificInt(1), m_Specific(VF))));
ASSERT_TRUE(match(Steps2, m_ScalarIVSteps(m_Specific(CanonicalIVPHI),
m_SpecificInt(2), m_Specific(VF))));
}
``````````
</details>
https://github.com/llvm/llvm-project/pull/138298
More information about the llvm-commits
mailing list