Home
last modified time | relevance | path

Searched refs:DstMax (Results 1 – 1 of 1) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DAPFixedPoint.cpp452 APSInt DstMax = APSInt::getMaxValue(DstWidth, !DstSign); in convertToInt() local
458 DstMax = DstMax.extend(SrcWidth); in convertToInt()
463 *Overflow = Result.isNegative() || Result.ugt(DstMax); in convertToInt()
465 *Overflow = Result.ugt(DstMax); in convertToInt()
467 *Overflow = Result < DstMin || Result > DstMax; in convertToInt()