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

References

tools/clang/lib/Sema/SemaExpr.cpp
10542     assert(IntType->isArithmeticType());
10547     if (IntType->isPromotableIntegerType())
10548       IntType = S.Context.getPromotedIntegerType(IntType);
10548       IntType = S.Context.getPromotedIntegerType(IntType);
10550     LHS = S.ImpCastExprToType(LHS.get(), IntType, CK_IntegralCast);
10551     RHS = S.ImpCastExprToType(RHS.get(), IntType, CK_IntegralCast);
10552     LHSType = RHSType = IntType;