[cfe-commits] r58848 - /cfe/trunk/include/clang/Analysis/PathSensitive/GRState.h
Zhongxing Xu
xuzhongxing at gmail.com
Fri Nov 7 05:13:43 PST 2008
Author: zhongxingxu
Date: Fri Nov 7 07:13:41 2008
New Revision: 58848
URL: http://llvm.org/viewvc/llvm-project?rev=58848&view=rev
Log:
Add simple get method.
Modified:
cfe/trunk/include/clang/Analysis/PathSensitive/GRState.h
Modified: cfe/trunk/include/clang/Analysis/PathSensitive/GRState.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Analysis/PathSensitive/GRState.h?rev=58848&r1=58847&r2=58848&view=diff
==============================================================================
--- cfe/trunk/include/clang/Analysis/PathSensitive/GRState.h (original)
+++ cfe/trunk/include/clang/Analysis/PathSensitive/GRState.h Fri Nov 7 07:13:41 2008
@@ -325,6 +325,7 @@
LiveVariables& getLiveVariables() { return Liveness; }
llvm::BumpPtrAllocator& getAllocator() { return Alloc; }
MemRegionManager& getRegionManager() { return StoreMgr->getRegionManager(); }
+ StoreManager& getStoreManager() { return *StoreMgr; }
typedef StoreManager::DeadSymbolsTy DeadSymbolsTy;
More information about the cfe-commits
mailing list