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 | a6904ff7f9e8e779d50c0c816950cd7f68846029 (patch) | |
tree | 74998d139ba2edbac5472c30a5cec8c60f6898f0 /clang/lib/Analysis/BasicStore.cpp | |
parent | 3e42e9f2fcf12603aec8aecb68c9c54033fa53d0 (diff) | |
download | bcm5719-llvm-a6904ff7f9e8e779d50c0c816950cd7f68846029.tar.gz bcm5719-llvm-a6904ff7f9e8e779d50c0c816950cd7f68846029.zip |
Tidy pretty-printing for SVals, using 'dump()' instead of 'printStdErr()', and implementing operator<< support for llvm::raw_ostream.
llvm-svn: 75560
Diffstat (limited to 'clang/lib/Analysis/BasicStore.cpp')
-rw-r--r-- | clang/lib/Analysis/BasicStore.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/lib/Analysis/BasicStore.cpp b/clang/lib/Analysis/BasicStore.cpp index ba1ccf1f900..f1f051f244c 100644 --- a/clang/lib/Analysis/BasicStore.cpp +++ b/clang/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(); } } |