diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-07-13 23:31:04 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-07-13 23:31:04 +0000 |
commit | 8800ad4eaa1621f6d23c8264971063b9f8da6a2e (patch) | |
tree | 0b875122b136a18d23824df6be74e310827f8c0b /lib/Analysis/RegionStore.cpp | |
parent | 54ca9b1d45fbfb0b3eeab581e0d10403cc922e62 (diff) |
Change pretty-printing API for SymExprs and MemRegions to use a naming convention and style similar to other elements in Clang.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@75548 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/RegionStore.cpp')
-rw-r--r-- | lib/Analysis/RegionStore.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/RegionStore.cpp b/lib/Analysis/RegionStore.cpp index 00a086d374..2999225a43 100644 --- a/lib/Analysis/RegionStore.cpp +++ b/lib/Analysis/RegionStore.cpp @@ -1439,7 +1439,7 @@ void RegionStoreManager::print(Store store, llvm::raw_ostream& OS, OS << "Store:" << nl; for (RegionBindingsTy::iterator I = B.begin(), E = B.end(); I != E; ++I) { - OS << ' '; I.getKey()->print(OS); OS << " : "; + OS << ' ' << I.getKey() << " : "; I.getData().print(OS); OS << nl; } } |