diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-04-21 00:49:20 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-04-21 00:49:20 +0000 |
commit | 6bf2ae05c777052e5ec05649710380dea263e7e0 (patch) | |
tree | 49a140b53481f244901136fa0263125fc9fd8ec9 /lib/CodeGen/CGObjCGNU.cpp | |
parent | 9e6c20bae697c908b7d368c0f79f5510d1006a65 (diff) |
Remove LateBoundIVars() runtime interface, it is unused.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69641 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGObjCGNU.cpp')
-rw-r--r-- | lib/CodeGen/CGObjCGNU.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/CodeGen/CGObjCGNU.cpp b/lib/CodeGen/CGObjCGNU.cpp index b5cd36061f..46e20c99ee 100644 --- a/lib/CodeGen/CGObjCGNU.cpp +++ b/lib/CodeGen/CGObjCGNU.cpp @@ -733,9 +733,6 @@ void CGObjCGNU::GenerateClass(const ObjCImplementationDecl *OID) { const_cast<ObjCInterfaceDecl *>(OID->getClassInterface()); std::string ClassName = ClassDecl->getNameAsString(); - // This is required by newer ObjC runtimes. - assert(!LateBoundIVars() &&"Late-bound instance variables not yet supported"); - // Get the size of instances. For runtimes that support late-bound instances // this should probably be something different (size just of instance // varaibles in this class, not superclasses?). |