summaryrefslogtreecommitdiffstats
path: root/clang/lib/Analysis/BugReporter.cpp
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2009-06-18 23:58:37 +0000
committerTed Kremenek <kremenek@apple.com>2009-06-18 23:58:37 +0000
commit095f1a9848af7f0c95574eba4d0c14c1df0c6065 (patch)
tree07a0285cf43c74fc531f5176289dc3502aea20e1 /clang/lib/Analysis/BugReporter.cpp
parent2cce7d5988a2e2d431b7a3b966cb49fa1d125a3c (diff)
downloadbcm5719-llvm-095f1a9848af7f0c95574eba4d0c14c1df0c6065.tar.gz
bcm5719-llvm-095f1a9848af7f0c95574eba4d0c14c1df0c6065.zip
Move clients over from using GRStateManager::BindXXX and friends to
GRState->bindXXX and friends (and constify some arguments along the way). llvm-svn: 73740
Diffstat (limited to 'clang/lib/Analysis/BugReporter.cpp')
-rw-r--r--clang/lib/Analysis/BugReporter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Analysis/BugReporter.cpp b/clang/lib/Analysis/BugReporter.cpp
index 32998e1c425..5dbbfc33e42 100644
--- a/clang/lib/Analysis/BugReporter.cpp
+++ b/clang/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;
OpenPOWER on IntegriCloud