commit | b753c8c9c5fa0b6b0c407304173890e2953a7f85 | [log] [tgz] |
---|---|---|
author | Alkis Evlogimenos <alkis@evlogimenos.com> | Mon Apr 12 15:57:58 2004 +0000 |
committer | Alkis Evlogimenos <alkis@evlogimenos.com> | Mon Apr 12 15:57:58 2004 +0000 |
tree | 42a340974b9a74df118f1526658a2278a30df055 | |
parent | 70bbce62b1487fd60afc9184e715b3e3cb7e739b [diff] [blame] |
Print def lists a bit more compactly llvm-svn: 12866
diff --git a/llvm/lib/CodeGen/LiveIntervals.cpp b/llvm/lib/CodeGen/LiveIntervals.cpp index 6d0e523..7665d87 100644 --- a/llvm/lib/CodeGen/LiveIntervals.cpp +++ b/llvm/lib/CodeGen/LiveIntervals.cpp
@@ -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 << " = ";