mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-19 01:48:34 +00:00
Moderate head scratching reveals that this conditional is not needed. If
i->start == j->start, then certainly i->end > j->start. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17943 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0113638073
commit
1e409bfd2a
@ -83,14 +83,10 @@ bool LiveInterval::overlapsFrom(const LiveInterval& other,
|
||||
}
|
||||
|
||||
while (i != ie && j != je) {
|
||||
if (i->start == j->start)
|
||||
return true;
|
||||
|
||||
if (i->start > j->start) {
|
||||
std::swap(i, j);
|
||||
std::swap(ie, je);
|
||||
}
|
||||
assert(i->start < j->start);
|
||||
|
||||
if (i->end > j->start)
|
||||
return true;
|
||||
|
Loading…
Reference in New Issue
Block a user