commit | 095f1a9848af7f0c95574eba4d0c14c1df0c6065 | [log] [tgz] |
---|---|---|
author | Ted Kremenek <kremenek@apple.com> | Thu Jun 18 23:58:37 2009 +0000 |
committer | Ted Kremenek <kremenek@apple.com> | Thu Jun 18 23:58:37 2009 +0000 |
tree | 07a0285cf43c74fc531f5176289dc3502aea20e1 | |
parent | 2cce7d5988a2e2d431b7a3b966cb49fa1d125a3c [diff] [blame] |
Move clients over from using GRStateManager::BindXXX and friends to GRState->bindXXX and friends (and constify some arguments along the way). llvm-svn: 73740
diff --git a/clang/lib/Analysis/BugReporter.cpp b/clang/lib/Analysis/BugReporter.cpp index 32998e1..5dbbfc3 100644 --- a/clang/lib/Analysis/BugReporter.cpp +++ b/clang/lib/Analysis/BugReporter.cpp
@@ -336,7 +336,7 @@ if (!DR) continue; - SVal Y = VMgr.GetSVal(N->getState(), DR); + SVal Y = N->getState()->getSVal(DR); if (X != Y) continue;