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:
Benjamin Kramer 2010-10-09 16:36:44 +00:00
parent 28ca86aa19
commit ccefe32141

View File

@ -780,7 +780,7 @@ void ConnectedVNInfoEqClasses::Distribute(LiveInterval *LIV[]) {
++J;
for (LiveInterval::iterator I = J; I != E; ++I) {
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");
LIV[eq]->ranges.push_back(*I);
} else