Print def lists a bit more compactly

llvm-svn: 12866
This commit is contained in:
Alkis Evlogimenos 2004-04-12 15:57:58 +00:00
parent 70bbce62b1
commit b753c8c9c5
1 changed files with 1 additions and 1 deletions

View File

@ -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 << " = ";