[PATCH] D20560: [new PM] port LoopAccessAnalysis to new pass manager (part-1)

Adam Nemet via llvm-commits llvm-commits at lists.llvm.org
Wed Jun 8 10:59:24 PDT 2016


anemet added a comment.

LGTM with the change below.


================
Comment at: include/llvm/Analysis/LoopAccessAnalysis.h:747
@@ -712,11 +746,3 @@
 private:
-  /// \brief The cache.
-  DenseMap<Loop *, std::unique_ptr<LoopAccessInfo>> LoopAccessInfoMap;
-
-  // The used analysis passes.
-  ScalarEvolution *SE;
-  const TargetLibraryInfo *TLI;
-  AliasAnalysis *AA;
-  DominatorTree *DT;
-  LoopInfo *LI;
+  LoopAccessAnalysisResult LAFI;
 };
----------------
s/LAFI/LAAR


http://reviews.llvm.org/D20560





More information about the llvm-commits mailing list