mirror of
https://github.com/RPCS3/llvm.git
synced 2025-02-22 03:31:06 +00:00
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:
parent
1e409bfd2a
commit
9fddc12c9b
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user