diff options
author | Ted Kremenek <kremenek@apple.com> | 2010-12-01 21:28:31 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2010-12-01 21:28:31 +0000 |
commit | 9d0bb1e366e0bbcf70417bdbc7b36e20202a676c (patch) | |
tree | 65147afce8b083f4240780575a1cb97895791056 /clang/lib/Checker/GRState.cpp | |
parent | 30eb6c7e7100bb5b9a41d792cda0a30c65ca9655 (diff) | |
download | bcm5719-llvm-9d0bb1e366e0bbcf70417bdbc7b36e20202a676c.tar.gz bcm5719-llvm-9d0bb1e366e0bbcf70417bdbc7b36e20202a676c.zip |
Rename 'SValuator' to 'SValBuilder'. The new name
reflects what the class actually does.
llvm-svn: 120605
Diffstat (limited to 'clang/lib/Checker/GRState.cpp')
-rw-r--r-- | clang/lib/Checker/GRState.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Checker/GRState.cpp b/clang/lib/Checker/GRState.cpp index 86b6f816589..4a55cee1e29 100644 --- a/clang/lib/Checker/GRState.cpp +++ b/clang/lib/Checker/GRState.cpp @@ -238,10 +238,10 @@ const GRState *GRState::AssumeInBound(DefinedOrUnknownSVal Idx, // Build an expression for 0 <= Idx < UpperBound. // This is the same as Idx + MIN < UpperBound + MIN, if overflow is allowed. - // FIXME: This should probably be part of SValuator. + // FIXME: This should probably be part of SValBuilder. GRStateManager &SM = getStateManager(); ValueManager &VM = SM.getValueManager(); - SValuator &SV = VM.getSValuator(); + SValBuilder &SV = VM.getSValBuilder(); ASTContext &Ctx = VM.getContext(); // Get the offset: the minimum value of the array index type. |