From 95102149362cd76c700b80dd1d1c618cc7f333db Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Sat, 7 Aug 2010 00:34:52 +0000 Subject: [PATCH] Make AnalysisImpls private. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110492 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/PassAnalysisSupport.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/PassAnalysisSupport.h b/include/llvm/PassAnalysisSupport.h index a99a1ae8711..0136966ea08 100644 --- a/include/llvm/PassAnalysisSupport.h +++ b/include/llvm/PassAnalysisSupport.h @@ -156,11 +156,11 @@ public: // getAnalysisIfAvailable - Return analysis result or null if it doesn't exist Pass *getAnalysisIfAvailable(AnalysisID ID, bool Direction) const; +private: // AnalysisImpls - This keeps track of which passes implements the interfaces // that are required by the current pass (to implement getAnalysis()). std::vector > AnalysisImpls; -private: // PassManager that is used to resolve analysis info PMDataManager ± }; -- 2.34.1