diff options
author | Ted Kremenek <kremenek@apple.com> | 2011-10-23 02:31:52 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2011-10-23 02:31:52 +0000 |
commit | 142adc492be981bf2ca9527b71f3d623fe141f4f (patch) | |
tree | fa53511858f7056f44c9788a3fca7e742e5863a6 /clang/lib/StaticAnalyzer/Core/ExprEngine.cpp | |
parent | e94d277db8bb8dda6beef4a6731c24a7a10fc47d (diff) | |
download | bcm5719-llvm-142adc492be981bf2ca9527b71f3d623fe141f4f.tar.gz bcm5719-llvm-142adc492be981bf2ca9527b71f3d623fe141f4f.zip |
[analyzer] Remove LocationContext creation methods from AnalysisManager, and change clients to use AnalysisContext instead.
WIP to remove/reduce ExprEngine's usage of AnalysisManager.
llvm-svn: 142739
Diffstat (limited to 'clang/lib/StaticAnalyzer/Core/ExprEngine.cpp')
-rw-r--r-- | clang/lib/StaticAnalyzer/Core/ExprEngine.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp b/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp index 5f1fe1b5e03..628ab8566d6 100644 --- a/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp +++ b/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp @@ -53,6 +53,7 @@ static inline Selector GetNullarySelector(const char* name, ASTContext &Ctx) { ExprEngine::ExprEngine(AnalysisManager &mgr, bool gcEnabled) : AMgr(mgr), + AnalysisContexts(mgr.getAnalysisContextManager()), Engine(*this), G(Engine.getGraph()), Builder(NULL), |