From 9d0bb1e366e0bbcf70417bdbc7b36e20202a676c Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Wed, 1 Dec 2010 21:28:31 +0000 Subject: Rename 'SValuator' to 'SValBuilder'. The new name reflects what the class actually does. llvm-svn: 120605 --- clang/lib/Checker/Store.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'clang/lib/Checker/Store.cpp') diff --git a/clang/lib/Checker/Store.cpp b/clang/lib/Checker/Store.cpp index 2e03009b1ce..1259d19cf08 100644 --- a/clang/lib/Checker/Store.cpp +++ b/clang/lib/Checker/Store.cpp @@ -225,9 +225,9 @@ SVal StoreManager::CastRetrievedVal(SVal V, const TypedRegion *R, } if (const Loc *L = dyn_cast(&V)) - return ValMgr.getSValuator().EvalCastL(*L, castTy); + return ValMgr.getSValBuilder().EvalCastL(*L, castTy); else if (const NonLoc *NL = dyn_cast(&V)) - return ValMgr.getSValuator().EvalCastNL(*NL, castTy); + return ValMgr.getSValBuilder().EvalCastNL(*NL, castTy); return V; } @@ -309,7 +309,7 @@ SVal StoreManager::getLValueElement(QualType elementType, NonLoc Offset, // Only allow non-integer offsets if the base region has no offset itself. // FIXME: This is a somewhat arbitrary restriction. We should be using - // SValuator here to add the two offsets without checking their types. + // SValBuilder here to add the two offsets without checking their types. if (!isa(Offset)) { if (isa(BaseRegion->StripCasts())) return UnknownVal(); -- cgit v1.2.3