Lines Matching defs:CR
167 // Try to union "PreviousRange" and "CR". If they are disjoint, push
168 // "PreviousRange" to the result and assign it to "CR", a new union range.
169 // Otherwise, update the upper of "PreviousRange" to cover "CR". Note that,
170 // the lower of "PreviousRange" is always less or equal the lower of "CR".
172 &Result](const ConstantRange &CR) {
173 if (PreviousRange.getUpper().slt(CR.getLower())) {
175 PreviousRange = CR;
179 APIntOps::smax(PreviousRange.getUpper(), CR.getUpper()));
236 interleaveComma(Ranges, OS, [&](ConstantRange CR) {
237 OS << "(" << CR.getLower() << ", " << CR.getUpper() << ")";