forked from OSchip/llvm-project
Sort live intervals by increasing start point.
llvm-svn: 10289
This commit is contained in:
parent
5fe0031c68
commit
ed28ca93ef
|
@ -297,6 +297,7 @@ void LiveIntervals::computeIntervals()
|
|||
}
|
||||
}
|
||||
|
||||
std::sort(intervals_.begin(), intervals_.end(), StartPointComp());
|
||||
DEBUG(std::copy(intervals_.begin(), intervals_.end(),
|
||||
std::ostream_iterator<Interval>(std::cerr, "\n")));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue