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()) &&
 1302           RHSTy->isFixedPointOrIntegerType()) &&
 1310   if (RHSTy->isSignedFixedPointType() && LHSTy->isUnsignedFixedPointType())
 1312   else if (RHSTy->isUnsignedFixedPointType() && LHSTy->isSignedFixedPointType())
 1313     RHSTy = S.Context.getCorrespondingSignedFixedPointType(RHSTy);
 1313     RHSTy = S.Context.getCorrespondingSignedFixedPointType(RHSTy);
 1324   unsigned RHSTyRank = GetFixedPointRank(RHSTy);
 1326   QualType ResultTy = LHSTyRank > RHSTyRank ? LHSTy : RHSTy;
 1328   if (LHSTy->isSaturatedFixedPointType() || RHSTy->isSaturatedFixedPointType())