diff options
author | Chris Lattner <sabre@nondot.org> | 2011-04-09 07:11:53 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2011-04-09 07:11:53 +0000 |
commit | e4ec5abf1bad9ae48845047b1c7b9266acb8f671 (patch) | |
tree | 6a8fb01514a134ccbcfd5c6ef07e02b308b83d09 /clang/lib/CodeGen/CodeGenModule.cpp | |
parent | 5045cf1a61f2a853e77fc1d568db663fe6aa3de4 (diff) | |
download | llvm-e4ec5abf1bad9ae48845047b1c7b9266acb8f671.zip llvm-e4ec5abf1bad9ae48845047b1c7b9266acb8f671.tar.gz llvm-e4ec5abf1bad9ae48845047b1c7b9266acb8f671.tar.bz2 |
fix indentation
llvm-svn: 129202
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.cpp | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp index fe8462b..8f304ff 100644 --- a/clang/lib/CodeGen/CodeGenModule.cpp +++ b/clang/lib/CodeGen/CodeGenModule.cpp @@ -2117,13 +2117,12 @@ void CodeGenModule::EmitTopLevelDecl(Decl *D) { case Decl::ObjCInterface: break; - case Decl::ObjCCategory: { - ObjCCategoryDecl *CD = cast<ObjCCategoryDecl>(D); - if (CD->IsClassExtension() && CD->hasSynthBitfield()) - Context.ResetObjCLayout(CD->getClassInterface()); - break; - } - + case Decl::ObjCCategory: { + ObjCCategoryDecl *CD = cast<ObjCCategoryDecl>(D); + if (CD->IsClassExtension() && CD->hasSynthBitfield()) + Context.ResetObjCLayout(CD->getClassInterface()); + break; + } case Decl::ObjCProtocol: Runtime->GenerateProtocol(cast<ObjCProtocolDecl>(D)); |