diff options
author | Eric Christopher <echristo@apple.com> | 2012-07-19 22:22:55 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2012-07-19 22:22:55 +0000 |
commit | f8378ca2b1b19c7e5361ba8d266186940dbbab5c (patch) | |
tree | 31a0c5fe602137ee1f70651b7f3a171e4150dd02 /clang/lib/CodeGen/CodeGenModule.cpp | |
parent | 7457aaf8c91eb367e5a69f68431794d1ef35a24d (diff) | |
download | bcm5719-llvm-f8378ca2b1b19c7e5361ba8d266186940dbbab5c.tar.gz bcm5719-llvm-f8378ca2b1b19c7e5361ba8d266186940dbbab5c.zip |
Remove HasSynthBitfield and all callers/writers/etc. Also remove
previous ResetObjCLayout calls since this is now handled in Sema.
Part of rdar://11842763
llvm-svn: 160527
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.cpp | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp index 22ac1154840..a66641510ac 100644 --- a/clang/lib/CodeGen/CodeGenModule.cpp +++ b/clang/lib/CodeGen/CodeGenModule.cpp @@ -2586,14 +2586,8 @@ void CodeGenModule::EmitTopLevelDecl(Decl *D) { // Forward declarations, no (immediate) code generation. case Decl::ObjCInterface: + case Decl::ObjCCategory: break; - - case Decl::ObjCCategory: { - ObjCCategoryDecl *CD = cast<ObjCCategoryDecl>(D); - if (CD->IsClassExtension() && CD->hasSynthBitfield()) - Context.ResetObjCLayout(CD->getClassInterface()); - break; - } case Decl::ObjCProtocol: { ObjCProtocolDecl *Proto = cast<ObjCProtocolDecl>(D); @@ -2610,8 +2604,6 @@ void CodeGenModule::EmitTopLevelDecl(Decl *D) { case Decl::ObjCImplementation: { ObjCImplementationDecl *OMD = cast<ObjCImplementationDecl>(D); - if (LangOpts.ObjCRuntime.isNonFragile() && OMD->hasSynthBitfield()) - Context.ResetObjCLayout(OMD->getClassInterface()); EmitObjCPropertyImplementations(OMD); EmitObjCIvarInitializations(OMD); ObjCRuntime->GenerateClass(OMD); |