forked from OSchip/llvm-project
When pretty-printing symbolic regions, use '{' ... '}' to indicate the symbol used for the region (makes it easier to read for nested regions).
llvm-svn: 75550
This commit is contained in:
parent
44e56ca949
commit
c8d6746c39
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue