[llvm] [LoopVectorize] Perform loop versioning for some early exit loops (PR #120603)

via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 24 02:54:07 PST 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 6de5d1e46d1812de2bbbbe8d8d2c811e4d16acbe 4884adc0e5a8d3d8c31dd36772b506ae834e56fc --extensions h,cpp -- llvm/include/llvm/Analysis/Loads.h llvm/include/llvm/Transforms/Vectorize/LoopVectorizationLegality.h llvm/lib/Analysis/Loads.cpp llvm/lib/Transforms/Vectorize/LoopVectorizationLegality.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 358603289e..7f9ffffc16 100644
--- a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
+++ b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
@@ -2169,10 +2169,11 @@ public:
 };
 } // namespace
 
-static void addPointerAlignmentChecks(
-    ArrayRef<std::pair<const SCEV *, Type *>> Ptrs, Function *F,
-    PredicatedScalarEvolution &PSE, TargetTransformInfo *TTI, ElementCount VF,
-    unsigned IC) {
+static void
+addPointerAlignmentChecks(ArrayRef<std::pair<const SCEV *, Type *>> Ptrs,
+                          Function *F, PredicatedScalarEvolution &PSE,
+                          TargetTransformInfo *TTI, ElementCount VF,
+                          unsigned IC) {
   ScalarEvolution *SE = PSE.getSE();
   const DataLayout &DL = SE->getDataLayout();
 

``````````

</details>


https://github.com/llvm/llvm-project/pull/120603


More information about the llvm-commits mailing list