From: Zhongxing Xu Date: Sat, 15 Nov 2008 08:19:58 +0000 (+0000) Subject: Use the allocator of ExplodedGraph. The whole static analysis module uses it. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0adfbf6e72f65c82524589f76f5beb12b09e842d;p=clang Use the allocator of ExplodedGraph. The whole static analysis module uses it. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59359 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/BasicStore.cpp b/lib/Analysis/BasicStore.cpp index 16c35ea7ac..4197c08a9c 100644 --- a/lib/Analysis/BasicStore.cpp +++ b/lib/Analysis/BasicStore.cpp @@ -31,7 +31,10 @@ class VISIBILITY_HIDDEN BasicStoreManager : public StoreManager { public: BasicStoreManager(GRStateManager& mgr) - : StateMgr(mgr), MRMgr(StateMgr.getAllocator()), SelfRegion(0) {} + : VBFactory(mgr.getAllocator()), + StateMgr(mgr), + MRMgr(StateMgr.getAllocator()), + SelfRegion(0) {} ~BasicStoreManager() {}