diff options
author | ed <ed@FreeBSD.org> | 2009-06-23 19:32:16 +0000 |
---|---|---|
committer | ed <ed@FreeBSD.org> | 2009-06-23 19:32:16 +0000 |
commit | 14660dbe9881f68a6cc2b9f014e1fb7b7228bca4 (patch) | |
tree | 258c14596f927fd77ae8d727dc9c3d4471bf0f46 /lib/Analysis/GRState.cpp | |
parent | da468bf93e74598f985f4988936ee5ca2dc9a38c (diff) | |
download | FreeBSD-src-14660dbe9881f68a6cc2b9f014e1fb7b7228bca4.zip FreeBSD-src-14660dbe9881f68a6cc2b9f014e1fb7b7228bca4.tar.gz |
Import Clang r73984.
Diffstat (limited to 'lib/Analysis/GRState.cpp')
-rw-r--r-- | lib/Analysis/GRState.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/GRState.cpp b/lib/Analysis/GRState.cpp index aeb1c04..a64b2d7 100644 --- a/lib/Analysis/GRState.cpp +++ b/lib/Analysis/GRState.cpp @@ -282,7 +282,7 @@ bool GRState::scanReachableSymbols(SVal val, SymbolVisitor& visitor) const { bool GRStateManager::isEqual(const GRState* state, Expr* Ex, const llvm::APSInt& Y) { - SVal V = GetSVal(state, Ex); + SVal V = state->getSVal(Ex); if (loc::ConcreteInt* X = dyn_cast<loc::ConcreteInt>(&V)) return X->getValue() == Y; |