Home
last modified time | relevance | path

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

/external/llvm-project/llvm/lib/Support/
DAPFixedPoint.cpp421 APSInt DstMax = APSInt::getMaxValue(DstWidth, !DstSign); in convertToInt() local
427 DstMax = DstMax.extend(SrcWidth); in convertToInt()
432 *Overflow = Result.isNegative() || Result.ugt(DstMax); in convertToInt()
434 *Overflow = Result.ugt(DstMax); in convertToInt()
436 *Overflow = Result < DstMin || Result > DstMax; in convertToInt()