From 6dba4a1bc3c257bee0812a130c468917ea210e05 Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Thu, 19 Jul 2012 22:22:51 +0000 Subject: Reset the layout of an ObjC class if we see an ivar in a category or implementation since we've now got a different layout. Fixes rdar://11842763 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@160526 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Sema/SemaDecl.cpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'lib/Sema/SemaDecl.cpp') diff --git a/lib/Sema/SemaDecl.cpp b/lib/Sema/SemaDecl.cpp index 4ea8df8b66..430ce9f7f7 100644 --- a/lib/Sema/SemaDecl.cpp +++ b/lib/Sema/SemaDecl.cpp @@ -9802,6 +9802,23 @@ void Sema::ActOnFields(Scope* S, if (EnclosingDecl->isInvalidDecl()) return; + // If this is an Objective-C @implementation or category and we have + // new fields here we should reset the layout of the interface since + // it will now change. + if (!Fields.empty() && isa(EnclosingDecl)) { + ObjCContainerDecl *DC = cast(EnclosingDecl); + switch (DC->getKind()) { + default: break; + case Decl::ObjCCategory: + Context.ResetObjCLayout(cast(DC)->getClassInterface()); + break; + case Decl::ObjCImplementation: + Context. + ResetObjCLayout(cast(DC)->getClassInterface()); + break; + } + } + RecordDecl *Record = dyn_cast(EnclosingDecl); // Start counting up the number of named members; make sure to include -- cgit v1.2.3-70-g09d2