Use the allocator of ExplodedGraph. The whole static analysis module uses it.

llvm-svn: 59359
This commit is contained in:
Zhongxing Xu 2008-11-15 08:19:58 +00:00
parent 312045115e
commit 461b4f4276
1 changed files with 4 additions and 1 deletions

View File

@ -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() {}