is run for perfectly reasonable things like NSString* because type
layout is recursive.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68104
91177308-0d34-0410-b5e6-
96231b3b80d8
ConvertTypeRecursive(QualType(cast<ExtQualType>(Ty).getBaseType(), 0));
case Type::ObjCInterface: {
- // Warning: Use of this is strongly discouraged. Late binding of instance
- // variables is supported on some runtimes and so using static binding can
- // break code when libraries are updated. Only use this if you have
- // previously checked that the ObjCRuntime subclass in use does not support
- // late-bound ivars.
- // We are issuing warnings elsewhere!
ObjCInterfaceDecl *ID = cast<ObjCInterfaceType>(Ty).getDecl();
return ConvertTagDeclType(Context.addRecordToClass(ID));
}