[llvm-commits] CVS: llvm/lib/CodeGen/LiveIntervals.cpp
Alkis Evlogimenos
alkis at cs.uiuc.edu
Mon Apr 12 10:58:02 PDT 2004
Changes in directory llvm/lib/CodeGen:
LiveIntervals.cpp updated: 1.67 -> 1.68
---
Log message:
Print def lists a bit more compactly
---
Diffs of the changes: (+1 -1)
Index: llvm/lib/CodeGen/LiveIntervals.cpp
diff -u llvm/lib/CodeGen/LiveIntervals.cpp:1.67 llvm/lib/CodeGen/LiveIntervals.cpp:1.68
--- llvm/lib/CodeGen/LiveIntervals.cpp:1.67 Fri Apr 9 13:07:57 2004
+++ llvm/lib/CodeGen/LiveIntervals.cpp Mon Apr 12 10:57:58 2004
@@ -713,7 +713,7 @@
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 << " = ";
More information about the llvm-commits
mailing list