[llvm] [LoopInterchange] Stop performing unprofitable interchange (PR #127473)
Sjoerd Meijer via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 18 02:37:11 PST 2025
================
@@ -497,11 +498,13 @@ struct LoopInterchange {
// indicates the loop should be placed as the innermost loop.
//
// For the old pass manager CacheCost would be null.
- DenseMap<const Loop *, unsigned> CostMap;
+ std::optional<CostMapTy> CostMap = std::nullopt;
----------------
sjoerdmeijer wrote:
You've also added a `CostMap` to the `LoopInterchangeProfitability` class, it's not yet clear to me if we need both.
https://github.com/llvm/llvm-project/pull/127473
More information about the llvm-commits
mailing list