Fix output of live intervals to show correctly its closed, open

ranges, i.e. [a,b)

llvm-svn: 10822
This commit is contained in:
Alkis Evlogimenos 2004-01-13 21:17:47 +00:00
parent 9d0c3d21c8
commit 33f9cb1da7
1 changed files with 1 additions and 1 deletions

View File

@ -415,7 +415,7 @@ std::ostream& llvm::operator<<(std::ostream& os,
os << "%reg" << li.reg << ',' << li.weight << " = ";
for (LiveIntervals::Interval::Ranges::const_iterator
i = li.ranges.begin(), e = li.ranges.end(); i != e; ++i) {
os << "[" << i->first << "," << i->second << "]";
os << "[" << i->first << "," << i->second << ")";
}
return os;
}