Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPFixedPoint.cpp458 APSInt DstMax = APSInt::getMaxValue(DstWidth, !DstSign); in convertToInt() local
464 DstMax = DstMax.extend(SrcWidth); in convertToInt()
469 *Overflow = Result.isNegative() || Result.ugt(DstMax); in convertToInt()
471 *Overflow = Result.ugt(DstMax); in convertToInt()
473 *Overflow = Result < DstMin || Result > DstMax; in convertToInt()