diff options
| author | Zhongxing Xu <xuzhongxing@gmail.com> | 2008-11-15 08:19:58 +0000 | 
|---|---|---|
| committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2008-11-15 08:19:58 +0000 | 
| commit | 461b4f4276e723529735534a15e682c8c06b3ecb (patch) | |
| tree | 73d998594f94dde92d0cbf18500ccc96407812f2 | |
| parent | 312045115e95773c4664b9192487b7376047aeee (diff) | |
| download | bcm5719-llvm-461b4f4276e723529735534a15e682c8c06b3ecb.tar.gz bcm5719-llvm-461b4f4276e723529735534a15e682c8c06b3ecb.zip  | |
Use the allocator of ExplodedGraph. The whole static analysis module uses it.
llvm-svn: 59359
| -rw-r--r-- | clang/lib/Analysis/BasicStore.cpp | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/clang/lib/Analysis/BasicStore.cpp b/clang/lib/Analysis/BasicStore.cpp index 16c35ea7ac7..4197c08a9cf 100644 --- a/clang/lib/Analysis/BasicStore.cpp +++ b/clang/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() {}  | 

