diff options
Diffstat (limited to 'lib/Checker/SVals.cpp')
-rw-r--r-- | lib/Checker/SVals.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Checker/SVals.cpp b/lib/Checker/SVals.cpp index efa5521ebd..28b3fce050 100644 --- a/lib/Checker/SVals.cpp +++ b/lib/Checker/SVals.cpp @@ -153,8 +153,8 @@ void SVal::symbol_iterator::expand() { assert(false && "unhandled expansion case"); } -const GRState *nonloc::LazyCompoundVal::getState() const { - return static_cast<const LazyCompoundValData*>(Data)->getState(); +const void *nonloc::LazyCompoundVal::getStore() const { + return static_cast<const LazyCompoundValData*>(Data)->getStore(); } const TypedRegion *nonloc::LazyCompoundVal::getRegion() const { @@ -299,7 +299,7 @@ void NonLoc::dumpToStream(llvm::raw_ostream& os) const { } case nonloc::LazyCompoundValKind: { const nonloc::LazyCompoundVal &C = *cast<nonloc::LazyCompoundVal>(this); - os << "lazyCompoundVal{" << (void*) C.getState() << ',' << C.getRegion() + os << "lazyCompoundVal{" << (void*) C.getStore() << ',' << C.getRegion() << '}'; break; } |