[llvm] [LoopInterchange] Bail out early if minimum loop nest is not met (PR #115128)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Nov 13 20:21:22 PST 2024
================
@@ -1713,6 +1721,12 @@ PreservedAnalyses LoopInterchangePass::run(LoopNest &LN,
LPMUpdater &U) {
Function &F = *LN.getParent();
+ SmallVector<Loop *, 8> LoopList(LN.getLoops());
+
----------------
CongzheUalberta wrote:
nit: empty line can be deleted?
https://github.com/llvm/llvm-project/pull/115128
More information about the llvm-commits
mailing list