There is no need to check to see if j overflowed in this loop as we're only

incrementing i.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17944 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2004-11-18 05:28:21 +00:00
parent 1e409bfd2a
commit 9fddc12c9b

View File

@ -82,7 +82,9 @@ bool LiveInterval::overlapsFrom(const LiveInterval& other,
return true;
}
while (i != ie && j != je) {
if (j == je) return false;
while (i != ie) {
if (i->start > j->start) {
std::swap(i, j);
std::swap(ie, je);