mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Silence compiler warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116156 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
28ca86aa19
commit
ccefe32141
@ -780,7 +780,7 @@ void ConnectedVNInfoEqClasses::Distribute(LiveInterval *LIV[]) {
|
|||||||
++J;
|
++J;
|
||||||
for (LiveInterval::iterator I = J; I != E; ++I) {
|
for (LiveInterval::iterator I = J; I != E; ++I) {
|
||||||
if (unsigned eq = eqClass_[I->valno->id]) {
|
if (unsigned eq = eqClass_[I->valno->id]) {
|
||||||
assert(LIV[eq]->empty() || LIV[eq]->expiredAt(I->start) &&
|
assert((LIV[eq]->empty() || LIV[eq]->expiredAt(I->start)) &&
|
||||||
"New intervals should be empty");
|
"New intervals should be empty");
|
||||||
LIV[eq]->ranges.push_back(*I);
|
LIV[eq]->ranges.push_back(*I);
|
||||||
} else
|
} else
|
||||||
|
Loading…
Reference in New Issue
Block a user