[llvm] [LoopInterchange] Constrain LI within supported loop nest depth (PR #118656)

via llvm-commits llvm-commits at lists.llvm.org
Wed Dec 4 07:39:01 PST 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 026fbe519e16a4993601d2bac509e182081fc068 18a195ec68a9f98b18bf878aec71ea0905651bb0 --extensions cpp -- llvm/lib/Transforms/Scalar/LoopInterchange.cpp
``````````

</details>

<details>
<summary>
View the diff from clang-format here.
</summary>

``````````diff
diff --git a/llvm/lib/Transforms/Scalar/LoopInterchange.cpp b/llvm/lib/Transforms/Scalar/LoopInterchange.cpp
index b5ebde300e..3d02514ea1 100644
--- a/llvm/lib/Transforms/Scalar/LoopInterchange.cpp
+++ b/llvm/lib/Transforms/Scalar/LoopInterchange.cpp
@@ -436,7 +436,8 @@ struct LoopInterchange {
     bool Changed = false;
 
     // Ensure proper loop nest depth.
-    assert(hasSupportedLoopDepth(LoopList) && "Unsupported depth of loop nest.");
+    assert(hasSupportedLoopDepth(LoopList) &&
+           "Unsupported depth of loop nest.");
 
     unsigned LoopNestDepth = LoopList.size();
     if (!isComputableLoopNest(LoopList)) {

``````````

</details>


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


More information about the llvm-commits mailing list