File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1287,12 +1287,12 @@ MDNode *MDNode::getMostGenericRange(MDNode *A, MDNode *B) {
1287
1287
return A;
1288
1288
1289
1289
// First, walk both lists in order of the lower boundary of each interval.
1290
- // At each step, try to merge the new interval to the last one we adedd .
1290
+ // At each step, try to merge the new interval to the last one we added .
1291
1291
SmallVector<ConstantInt *, 4 > EndPoints;
1292
- int AI = 0 ;
1293
- int BI = 0 ;
1294
- int AN = A->getNumOperands () / 2 ;
1295
- int BN = B->getNumOperands () / 2 ;
1292
+ unsigned AI = 0 ;
1293
+ unsigned BI = 0 ;
1294
+ unsigned AN = A->getNumOperands () / 2 ;
1295
+ unsigned BN = B->getNumOperands () / 2 ;
1296
1296
while (AI < AN && BI < BN) {
1297
1297
ConstantInt *ALow = mdconst::extract<ConstantInt>(A->getOperand (2 * AI));
1298
1298
ConstantInt *BLow = mdconst::extract<ConstantInt>(B->getOperand (2 * BI));
You can’t perform that action at this time.
0 commit comments