diff options
author | Zhanyong Wan <wan@google.com> | 2011-02-16 21:13:32 +0000 |
---|---|---|
committer | Zhanyong Wan <wan@google.com> | 2011-02-16 21:13:32 +0000 |
commit | 7dfc9420babe83e236a47e752f8723bd06070d9d (patch) | |
tree | fd5184bcf498744899117777eecc9df7ace6d122 /lib/StaticAnalyzer/Core/BasicStore.cpp | |
parent | d24eda8ad42bea6b36400d5505f67a7917d65652 (diff) |
Makes most methods in SVals.h conform to the naming guide. Reviewed
by kremenek.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@125687 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/StaticAnalyzer/Core/BasicStore.cpp')
-rw-r--r-- | lib/StaticAnalyzer/Core/BasicStore.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/StaticAnalyzer/Core/BasicStore.cpp b/lib/StaticAnalyzer/Core/BasicStore.cpp index 105b505242..987e790585 100644 --- a/lib/StaticAnalyzer/Core/BasicStore.cpp +++ b/lib/StaticAnalyzer/Core/BasicStore.cpp @@ -252,7 +252,7 @@ Store BasicStoreManager::Bind(Store store, Loc loc, SVal V) { // a pointer. We may wish to flag a type error here if the types // are incompatible. This may also cause lots of breakage // elsewhere. Food for thought. - if (TyR->isBoundable() && Loc::IsLocType(TyR->getValueType())) + if (TyR->isBoundable() && Loc::isLocType(TyR->getValueType())) V = X->getLoc(); } @@ -464,7 +464,7 @@ Store BasicStoreManager::BindDeclInternal(Store store, const VarRegion* VR, // unsigned) zero; if (!InitVal) { QualType T = VD->getType(); - if (Loc::IsLocType(T)) + if (Loc::isLocType(T)) store = Bind(store, loc::MemRegionVal(VR), loc::ConcreteInt(BasicVals.getValue(0, T))); else if (T->isIntegerType() && T->isScalarType()) |