From b753c8c9c5fa0b6b0c407304173890e2953a7f85 Mon Sep 17 00:00:00 2001 From: Alkis Evlogimenos Date: Mon, 12 Apr 2004 15:57:58 +0000 Subject: [PATCH] Print def lists a bit more compactly llvm-svn: 12866 --- llvm/lib/CodeGen/LiveIntervals.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/CodeGen/LiveIntervals.cpp b/llvm/lib/CodeGen/LiveIntervals.cpp index 6d0e523487a0..7665d8774d5a 100644 --- a/llvm/lib/CodeGen/LiveIntervals.cpp +++ b/llvm/lib/CodeGen/LiveIntervals.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 << " = ";