diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-06-23 17:55:07 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-06-23 17:55:07 +0000 |
commit | dbc2afc5fbafcffff06da0b875ce62f364cf11e0 (patch) | |
tree | 640ffb02045c89cec225dc68be6e6332b8ce5d63 /lib/Analysis/BugReporter.cpp | |
parent | e9cfa45dae118e534695d060e627df6489b6e40e (diff) |
API cleanup: move more methods from GRStateManager to GRState.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@73968 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 5dbbfc33e4..9c9029cfff 100644 --- a/lib/Analysis/BugReporter.cpp +++ b/lib/Analysis/BugReporter.cpp @@ -380,7 +380,7 @@ public: return true; // Check if the previous state has this binding. - SVal X = VMgr.GetSVal(PrevSt, loc::MemRegionVal(R)); + SVal X = PrevSt->getSVal(loc::MemRegionVal(R)); if (X == V) // Same binding? return true; |