diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2008-11-27 06:03:03 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2008-11-27 06:03:03 +0000 |
commit | d54847944292b5693d375b034b52820f3947d22f (patch) | |
tree | 7c890c16c01803fe5e18c1d13521007ed1050f55 /lib/Analysis/RegionStore.cpp | |
parent | 4fe66aa20278b29bf0a3eb890fe0ccb1917b324c (diff) |
RegionViewMap factory is actually not used. All GDMs should use factories from
GDMContext.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@60150 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/RegionStore.cpp')
-rw-r--r-- | lib/Analysis/RegionStore.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/Analysis/RegionStore.cpp b/lib/Analysis/RegionStore.cpp index e2dd176139..90baf2df92 100644 --- a/lib/Analysis/RegionStore.cpp +++ b/lib/Analysis/RegionStore.cpp @@ -57,7 +57,6 @@ namespace { class VISIBILITY_HIDDEN RegionStoreManager : public StoreManager { RegionBindingsTy::Factory RBFactory; RegionViewTy::Factory RVFactory; - RegionViewMapTy::Factory RVMFactory; GRStateManager& StateMgr; MemRegionManager MRMgr; @@ -66,7 +65,6 @@ public: RegionStoreManager(GRStateManager& mgr) : RBFactory(mgr.getAllocator()), RVFactory(mgr.getAllocator()), - RVMFactory(mgr.getAllocator()), StateMgr(mgr), MRMgr(StateMgr.getAllocator()) {} |