From c12dedbe9c164a2cc47940a3b7ea0c27efe58f1a Mon Sep 17 00:00:00 2001 From: Zhongxing Xu Date: Fri, 7 Nov 2008 13:13:41 +0000 Subject: [PATCH] Add simple get method. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@58848 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/Analysis/PathSensitive/GRState.h | 1 + 1 file changed, 1 insertion(+) 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; -- 2.40.0