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

References

tools/clang/lib/Sema/SemaDeclObjC.cpp
 3136   if (left == right) return true;
 3141   if (left->isIncompleteType() || right->isIncompleteType()) return false;
 3147   TypeInfo LeftTI = Context.getTypeInfo(left);
 3159   if (isa<VectorType>(left)) return isa<VectorType>(right);
 3166   if (!left->isScalarType() || !right->isScalarType())
 3167     return tryMatchRecordTypes(Context, strategy, left, right);
 3171   Type::ScalarTypeKind leftSK = left->getScalarTypeKind();