From: Zhongxing Xu Date: Fri, 7 Nov 2008 13:13:41 +0000 (+0000) Subject: Add simple get method. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c12dedbe9c164a2cc47940a3b7ea0c27efe58f1a;p=clang Add simple get method. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@58848 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Analysis/PathSensitive/GRState.h b/include/clang/Analysis/PathSensitive/GRState.h index 9b99251381..6b68425cb8 100644 --- a/include/clang/Analysis/PathSensitive/GRState.h +++ b/include/clang/Analysis/PathSensitive/GRState.h @@ -325,6 +325,7 @@ public: LiveVariables& getLiveVariables() { return Liveness; } llvm::BumpPtrAllocator& getAllocator() { return Alloc; } MemRegionManager& getRegionManager() { return StoreMgr->getRegionManager(); } + StoreManager& getStoreManager() { return *StoreMgr; } typedef StoreManager::DeadSymbolsTy DeadSymbolsTy;