1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 04:02:41 +01:00

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 45bb1bbd1b
commit bb422833e4

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