Home | History | Annotate | Download | only in Analysis

Lines Matching full:newr

185   bool markConstantRange(ConstantRange NewR) {
187 if (NewR.isEmptySet())
190 bool changed = Range != NewR;
191 Range = std::move(NewR);
196 if (NewR.isEmptySet())
200 Range = std::move(NewR);
271 ConstantRange NewR = Range.unionWith(RHS.getConstantRange());
272 if (NewR.isFullSet())
274 return markConstantRange(NewR);