Silence compiler warning.

llvm-svn: 116156
This commit is contained in:
Benjamin Kramer 2010-10-09 16:36:44 +00:00
parent 56d81e7eae
commit e2a5f1be3b

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