[cfe-commits] r74009 - /cfe/trunk/include/clang/Analysis/PathSensitive/GRState.h

Ted Kremenek kremenek at apple.com
Tue Jun 23 14:50:16 PDT 2009


Author: kremenek
Date: Tue Jun 23 16:50:16 2009
New Revision: 74009

URL: http://llvm.org/viewvc/llvm-project?rev=74009&view=rev
Log:
Fix build.

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=74009&r1=74008&r2=74009&view=diff

==============================================================================
--- cfe/trunk/include/clang/Analysis/PathSensitive/GRState.h (original)
+++ cfe/trunk/include/clang/Analysis/PathSensitive/GRState.h Tue Jun 23 16:50:16 2009
@@ -665,6 +665,14 @@
 // Out-of-line method definitions for GRState.
 //===----------------------------------------------------------------------===//
 
+inline const VarRegion* GRState::getRegion(const VarDecl* D) const {
+  return Mgr->getRegionManager().getVarRegion(D);
+}
+
+inline const MemRegion* GRState::getSelfRegion() const {
+  return Mgr->StoreMgr->getSelfRegion(getStore());
+}
+  
 inline const GRState *GRState::assume(SVal Cond, bool Assumption) const {
   return Mgr->ConstraintMgr->Assume(this, Cond, Assumption);
 }





More information about the cfe-commits mailing list