]> granicus.if.org Git - clang/commitdiff
When pretty-printing symbolic regions, use '{' ... '}' to indicate the symbol used...
authorTed Kremenek <kremenek@apple.com>
Mon, 13 Jul 2009 23:38:57 +0000 (23:38 +0000)
committerTed Kremenek <kremenek@apple.com>
Mon, 13 Jul 2009 23:38:57 +0000 (23:38 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@75550 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/MemRegion.cpp

index ec0608bc9862b243e524b1275022048aa6749616..8a40e4ae52379871f4d42fbcfe40325c01ec9317 100644 (file)
@@ -191,7 +191,7 @@ void StringRegion::dumpToStream(llvm::raw_ostream& os) const {
 }
 
 void SymbolicRegion::dumpToStream(llvm::raw_ostream& os) const {
-  os << "SymRegion-" << sym;
+  os << "SymRegion{" << sym << '}';
 }
 
 void TypedViewRegion::dumpToStream(llvm::raw_ostream& os) const {