diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-06-18 23:58:37 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-06-18 23:58:37 +0000 |
commit | 23ec48cd3369c8d7d1ab3c3f2226cfcffd2cd3d3 (patch) | |
tree | 6d84c8ac6f6a269f440851eb9d552d686c66e7ef /lib/Analysis/BugReporter.cpp | |
parent | f1b8227d758721075e3a84a85e66cb7173334b13 (diff) |
Move clients over from using GRStateManager::BindXXX and friends to
GRState->bindXXX and friends (and constify some arguments along the way).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@73740 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/BugReporter.cpp')
-rw-r--r-- | lib/Analysis/BugReporter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/BugReporter.cpp b/lib/Analysis/BugReporter.cpp index 32998e1c42..5dbbfc33e4 100644 --- a/lib/Analysis/BugReporter.cpp +++ b/lib/Analysis/BugReporter.cpp @@ -336,7 +336,7 @@ GetMostRecentVarDeclBinding(const ExplodedNode<GRState>* N, if (!DR) continue; - SVal Y = VMgr.GetSVal(N->getState(), DR); + SVal Y = N->getState()->getSVal(DR); if (X != Y) continue; |