forked from OSchip/llvm-project
Use the allocator of ExplodedGraph. The whole static analysis module uses it.
llvm-svn: 59359
This commit is contained in:
parent
312045115e
commit
461b4f4276
|
@ -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() {}
|
||||
|
||||
|
|
Loading…
Reference in New Issue