summaryrefslogtreecommitdiff
path: root/include/llvm/PassAnalysisSupport.h
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-08-07 00:34:52 +0000
committerDan Gohman <gohman@apple.com>2010-08-07 00:34:52 +0000
commit95102149362cd76c700b80dd1d1c618cc7f333db (patch)
treeea7b2a7f4e6689ed07bc0943279a6aa9ec13b1e5 /include/llvm/PassAnalysisSupport.h
parent7f6eb639bd9563c53a6eb035d198f8d525ce3c0e (diff)
downloadllvm-95102149362cd76c700b80dd1d1c618cc7f333db.tar.gz
llvm-95102149362cd76c700b80dd1d1c618cc7f333db.tar.bz2
llvm-95102149362cd76c700b80dd1d1c618cc7f333db.tar.xz
Make AnalysisImpls private.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110492 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/PassAnalysisSupport.h')
-rw-r--r--include/llvm/PassAnalysisSupport.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/PassAnalysisSupport.h b/include/llvm/PassAnalysisSupport.h
index a99a1ae871..0136966ea0 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<std::pair<AnalysisID, Pass*> > AnalysisImpls;
-private:
// PassManager that is used to resolve analysis info
PMDataManager &PM;
};