Skip to content
Snippets Groups Projects
Commit 0adfbf6e authored by Zhongxing Xu's avatar Zhongxing Xu
Browse files

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
parent 1385f8e8
No related branches found
No related tags found
No related merge requests found
...@@ -31,7 +31,10 @@ class VISIBILITY_HIDDEN BasicStoreManager : public StoreManager { ...@@ -31,7 +31,10 @@ class VISIBILITY_HIDDEN BasicStoreManager : public StoreManager {
public: public:
BasicStoreManager(GRStateManager& mgr) BasicStoreManager(GRStateManager& mgr)
: StateMgr(mgr), MRMgr(StateMgr.getAllocator()), SelfRegion(0) {} : VBFactory(mgr.getAllocator()),
StateMgr(mgr),
MRMgr(StateMgr.getAllocator()),
SelfRegion(0) {}
~BasicStoreManager() {} ~BasicStoreManager() {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment