[llvm] [LoopInterchange] Add metadata to control loop-interchange (PR #127474)
Michael Kruse via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 17 13:57:43 PST 2025
================
@@ -299,6 +284,26 @@ static bool isComputableLoopNest(ScalarEvolution *SE,
namespace {
+/// LoopInterchangeList manages the list of loops and the range to which the
+/// interchange may be applied.
+struct LoopInterchangeList {
+ SmallVector<Loop *, 8> LoopList;
----------------
Meinersbur wrote:
Not specifiying the new order of the loops within the nest?
https://github.com/llvm/llvm-project/pull/127474
More information about the llvm-commits
mailing list