From: Ted Kremenek Date: Mon, 13 Jul 2009 23:38:57 +0000 (+0000) Subject: When pretty-printing symbolic regions, use '{' ... '}' to indicate the symbol used... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aef5d2205a4425a4d3e1b0e28d46ed80763651df;p=clang When pretty-printing symbolic regions, use '{' ... '}' to indicate the symbol used for the region (makes it easier to read for nested regions). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@75550 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/MemRegion.cpp b/lib/Analysis/MemRegion.cpp index ec0608bc98..8a40e4ae52 100644 --- a/lib/Analysis/MemRegion.cpp +++ b/lib/Analysis/MemRegion.cpp @@ -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 {