diff --git a/mlir/include/mlir/Pass/AnalysisManager.h b/mlir/include/mlir/Pass/AnalysisManager.h index a4cb4963bfc1..561ff7bfb56f 100644 --- a/mlir/include/mlir/Pass/AnalysisManager.h +++ b/mlir/include/mlir/Pass/AnalysisManager.h @@ -100,7 +100,7 @@ template struct AnalysisModel : public AnalysisConcept { template class AnalysisMap { /// A mapping between an analysis id and an existing analysis instance. using ConceptMap = - DenseMap>; + llvm::DenseMap>; /// Utility to return the name of the given analysis class. template static llvm::StringRef getAnalysisName() { @@ -274,7 +274,7 @@ public: private: /// The cached analyses for functions within the current module. - DenseMap> functionAnalyses; + llvm::DenseMap> functionAnalyses; /// The analyses for the owning module. detail::AnalysisMap moduleAnalyses;