Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaChecking.cpp12842 llvm::APSInt PromotedMin; member
12848 PromotedMin = PromotedMax = llvm::APSInt(BitWidth, Unsigned); in PromotedRange()
12853 PromotedMin = llvm::APSInt::getMinValue(BitWidth, Unsigned); in PromotedRange()
12856 PromotedMin = llvm::APSInt::getMinValue(R.Width, R.NonNegative) in PromotedRange()
12858 PromotedMin.setIsUnsigned(Unsigned); in PromotedRange()
12867 bool isContiguous() const { return PromotedMin <= PromotedMax; } in isContiguous()
12890 assert(Value.getBitWidth() == PromotedMin.getBitWidth() && in compare()
12891 Value.isUnsigned() == PromotedMin.isUnsigned()); in compare()
12896 if (Value >= PromotedMin) return InRange; in compare()
12901 switch (llvm::APSInt::compareValues(Value, PromotedMin)) { in compare()
[all …]