reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Sema/SemaChecking.cpp
10525       PromotedMin = PromotedMax = llvm::APSInt(BitWidth, Unsigned);
10531       PromotedMax = llvm::APSInt::getMaxValue(BitWidth, Unsigned);
10537       PromotedMax = llvm::APSInt::getMaxValue(R.Width, R.NonNegative)
10539       PromotedMax.setIsUnsigned(Unsigned);
10544   bool isContiguous() const { return PromotedMin <= PromotedMax; }
10574       if (Value <= PromotedMax) return InRange;
10580     case 0: return PromotedMin == PromotedMax ? OnlyValue : Min;
10582       switch (llvm::APSInt::compareValues(Value, PromotedMax)) {