From: Alkis Evlogimenos Date: Mon, 12 Apr 2004 15:57:58 +0000 (+0000) Subject: Print def lists a bit more compactly X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e633352fd57d54612f8986978b6fe3cb9ba2f620;p=oota-llvm.git Print def lists a bit more compactly git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12866 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/LiveIntervalAnalysis.cpp b/lib/CodeGen/LiveIntervalAnalysis.cpp index 6d0e523487a..7665d8774d5 100644 --- a/lib/CodeGen/LiveIntervalAnalysis.cpp +++ b/lib/CodeGen/LiveIntervalAnalysis.cpp @@ -713,7 +713,7 @@ std::ostream& llvm::operator<<(std::ostream& os, os << " {" << li.defs.front(); for (LiveIntervals::Interval::Defs::const_iterator i = next(li.defs.begin()), e = li.defs.end(); i != e; ++i) - os << ", " << *i; + os << "," << *i; os << "}"; os << " = ";