diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-07-13 23:53:06 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-07-13 23:53:06 +0000 |
commit | 6f9b3a4d7143362d3c2ac1f843d76971799f5b97 (patch) | |
tree | a1837efc84abf2d1700d8d81d1ce17de2d415361 /lib/Analysis/BasicStore.cpp | |
parent | aef5d2205a4425a4d3e1b0e28d46ed80763651df (diff) |
Tidy pretty-printing for SVals, using 'dump()' instead of 'printStdErr()', and implementing operator<< support for llvm::raw_ostream.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@75560 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/BasicStore.cpp')
-rw-r--r-- | lib/Analysis/BasicStore.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Analysis/BasicStore.cpp b/lib/Analysis/BasicStore.cpp index ba1ccf1f90..f1f051f244 100644 --- a/lib/Analysis/BasicStore.cpp +++ b/lib/Analysis/BasicStore.cpp @@ -611,8 +611,7 @@ void BasicStoreManager::print(Store store, llvm::raw_ostream& Out, else Out << nl; - Out << ' ' << I.getKey() << " : "; - I.getData().print(Out); + Out << ' ' << I.getKey() << " : " << I.getData(); } } |