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);
10530       PromotedMin = llvm::APSInt::getMinValue(BitWidth, Unsigned);
10533       PromotedMin = llvm::APSInt::getMinValue(R.Width, R.NonNegative)
10535       PromotedMin.setIsUnsigned(Unsigned);
10544   bool isContiguous() const { return PromotedMin <= PromotedMax; }
10567     assert(Value.getBitWidth() == PromotedMin.getBitWidth() &&
10568            Value.isUnsigned() == PromotedMin.isUnsigned());
10573       if (Value >= PromotedMin) return InRange;
10578     switch (llvm::APSInt::compareValues(Value, PromotedMin)) {
10580     case 0: return PromotedMin == PromotedMax ? OnlyValue : Min;