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 | b670f294c968f5dba7bfae232a63b7c6c744e719 (patch) | |
tree | c35fdc9b753520520bdd2c8281a10126a037b7ce /clang/lib | |
parent | 7ae1a84465d7257344c3eee7aca42c69f0da9b54 (diff) | |
download | bcm5719-llvm-b670f294c968f5dba7bfae232a63b7c6c744e719.tar.gz bcm5719-llvm-b670f294c968f5dba7bfae232a63b7c6c744e719.zip |
RegionViewMap factory is actually not used. All GDMs should use factories from
GDMContext.
llvm-svn: 60150
Diffstat (limited to 'clang/lib')
-rw-r--r-- | clang/lib/Analysis/RegionStore.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/clang/lib/Analysis/RegionStore.cpp b/clang/lib/Analysis/RegionStore.cpp index e2dd176139d..90baf2df92e 100644 --- a/clang/lib/Analysis/RegionStore.cpp +++ b/clang/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()) {} |