Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:SMin

3269     // (icmp sgt smin(PosA, B) 0) -> (icmp sgt B 0)
4434 APFloat SMin(RHS.getSemantics());
4435 SMin.convertFromAPInt(APInt::getSignedMinValue(IntWidth), true,
4437 if (SMin.compare(RHS) == APFloat::cmpGreaterThan) { // smin > 12312.0
4445 APFloat SMin(RHS.getSemantics());
4446 SMin.convertFromAPInt(APInt::getMinValue(IntWidth), true,
4448 if (SMin.compare(RHS) == APFloat::cmpGreaterThan) { // umin > 12312.0
4456 // Okay, now we know that the FP constant fits in the range [SMIN, SMAX] or