aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZhongxing Xu <xuzhongxing@gmail.com>2008-11-07 13:13:41 +0000
committerZhongxing Xu <xuzhongxing@gmail.com>2008-11-07 13:13:41 +0000
commitc12dedbe9c164a2cc47940a3b7ea0c27efe58f1a (patch)
tree64e29561661725a6a0a14bf8f361a1145c682fd2
parentb1ae7d985b72764f2c42bf45d6a801b600a59890 (diff)
Add simple get method.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@58848 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/Analysis/PathSensitive/GRState.h1
1 files changed, 1 insertions, 0 deletions
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;