diff options
-rw-r--r-- | lib/Analysis/SVals.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Analysis/SVals.cpp b/lib/Analysis/SVals.cpp index e5657ff6b6..a5ba199398 100644 --- a/lib/Analysis/SVals.cpp +++ b/lib/Analysis/SVals.cpp @@ -283,7 +283,7 @@ void NonLoc::dumpToStream(llvm::raw_ostream& os) const { } case nonloc::CompoundValKind: { const nonloc::CompoundVal& C = *cast<nonloc::CompoundVal>(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: |