From d54847944292b5693d375b034b52820f3947d22f Mon Sep 17 00:00:00 2001 From: Zhongxing Xu Date: Thu, 27 Nov 2008 06:03:03 +0000 Subject: [PATCH] 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 --- lib/Analysis/RegionStore.cpp | 2 -- 1 file changed, 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()) {} -- 2.50.1