forked from OSchip/llvm-project
Make interval partition print correctly, patch contributed by
Vladimir Prus! llvm-svn: 21566
This commit is contained in:
parent
bd43b9db9d
commit
eb2a461acf
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue