]> granicus.if.org Git - clang/commitdiff
RegionViewMap factory is actually not used. All GDMs should use factories from
authorZhongxing Xu <xuzhongxing@gmail.com>
Thu, 27 Nov 2008 06:03:03 +0000 (06:03 +0000)
committerZhongxing Xu <xuzhongxing@gmail.com>
Thu, 27 Nov 2008 06:03:03 +0000 (06:03 +0000)
GDMContext.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@60150 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/RegionStore.cpp

index e2dd176139d38644a249cdb034c4db1c54fd81e7..90baf2df92e673bda6be2a448a1fb1d28a76354e 100644 (file)
@@ -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()) {}