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

References

tools/clang/lib/Sema/SemaExpr.cpp
 7090       = S.Context.getQualifiedType(lhptee, rhptee.getQualifiers());
 7091     QualType destType = S.Context.getPointerType(destPointee);
 7093     LHS = S.ImpCastExprToType(LHS.get(), destType, CK_NoOp);
 7095     RHS = S.ImpCastExprToType(RHS.get(), destType, CK_BitCast);
 7100       = S.Context.getQualifiedType(rhptee, lhptee.getQualifiers());
 7101     QualType destType = S.Context.getPointerType(destPointee);
 7103     RHS = S.ImpCastExprToType(RHS.get(), destType, CK_NoOp);
 7105     LHS = S.ImpCastExprToType(LHS.get(), destType, CK_BitCast);
 7109   return checkConditionalPointerCompatibility(S, LHS, RHS, Loc);