Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaChecking.cpp11207 llvm::APSInt PromotedMin; member
11213 PromotedMin = PromotedMax = llvm::APSInt(BitWidth, Unsigned); in PromotedRange()
11218 PromotedMin = llvm::APSInt::getMinValue(BitWidth, Unsigned); in PromotedRange()
11221 PromotedMin = llvm::APSInt::getMinValue(R.Width, R.NonNegative) in PromotedRange()
11223 PromotedMin.setIsUnsigned(Unsigned); in PromotedRange()
11232 bool isContiguous() const { return PromotedMin <= PromotedMax; } in isContiguous()
11255 assert(Value.getBitWidth() == PromotedMin.getBitWidth() && in compare()
11256 Value.isUnsigned() == PromotedMin.isUnsigned()); in compare()
11261 if (Value >= PromotedMin) return InRange; in compare()
11266 switch (llvm::APSInt::compareValues(Value, PromotedMin)) { in compare()
[all …]