diff --git a/clang/lib/Analysis/SVals.cpp b/clang/lib/Analysis/SVals.cpp index e5657ff6b614..a5ba19939832 100644 --- a/clang/lib/Analysis/SVals.cpp +++ b/clang/lib/Analysis/SVals.cpp @@ -283,7 +283,7 @@ void NonLoc::dumpToStream(llvm::raw_ostream& os) const { } case nonloc::CompoundValKind: { const nonloc::CompoundVal& C = *cast(this); - os << " {"; + os << "compoundVal{"; bool first = true; for (nonloc::CompoundVal::iterator I=C.begin(), E=C.end(); I!=E; ++I) { if (first) { @@ -294,7 +294,7 @@ void NonLoc::dumpToStream(llvm::raw_ostream& os) const { (*I).dumpToStream(os); } - os << " }"; + os << "}"; break; } default: