Make interval partition print correctly, patch contributed by

Vladimir Prus!

llvm-svn: 21566
This commit is contained in:
Chris Lattner 2005-04-26 14:48:28 +00:00
parent f6199ef63a
commit 5dc0b9e938

View File

@ -31,8 +31,8 @@ void IntervalPartition::destroy() {
}
void IntervalPartition::print(std::ostream &O, const Module*) const {
std::copy(Intervals.begin(), Intervals.end(),
std::ostream_iterator<const Interval *>(O, "\n"));
for(unsigned i = 0, e = Intervals.size(); i != e; ++i)
Intervals[i]->print(O);
}
// addIntervalToPartition - Add an interval to the internal list of intervals,