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

References

tools/clang/lib/Sema/SemaExpr.cpp
 1299   assert((LHSTy->isFixedPointType() || RHSTy->isFixedPointType()) &&
 1301   assert((LHSTy->isFixedPointOrIntegerType() ||
 1310   if (RHSTy->isSignedFixedPointType() && LHSTy->isUnsignedFixedPointType())
 1311     LHSTy = S.Context.getCorrespondingSignedFixedPointType(LHSTy);
 1311     LHSTy = S.Context.getCorrespondingSignedFixedPointType(LHSTy);
 1312   else if (RHSTy->isUnsignedFixedPointType() && LHSTy->isSignedFixedPointType())
 1323   unsigned LHSTyRank = GetFixedPointRank(LHSTy);
 1326   QualType ResultTy = LHSTyRank > RHSTyRank ? LHSTy : RHSTy;
 1328   if (LHSTy->isSaturatedFixedPointType() || RHSTy->isSaturatedFixedPointType())