Support for code generation of Objective-C top-level language constructs.
Implemented by David Chisnall!
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@51835 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/CodeGenModule.h b/lib/CodeGen/CodeGenModule.h
index 992a3bf..3e77526 100644
--- a/lib/CodeGen/CodeGenModule.h
+++ b/lib/CodeGen/CodeGenModule.h
@@ -32,6 +32,9 @@
class ASTContext;
class FunctionDecl;
class ObjCMethodDecl;
+ class ObjCImplementationDecl;
+ class ObjCCategoryImplDecl;
+ class ObjCProtocolDecl;
class Decl;
class Expr;
class Stmt;
@@ -114,6 +117,9 @@
void EmitStatics(void);
void EmitObjCMethod(const ObjCMethodDecl *OMD);
+ void EmitObjCCategoryImpl(const ObjCCategoryImplDecl *OCD);
+ void EmitObjCClassImplementation(const ObjCImplementationDecl *OID);
+ void EmitObjCProtocolImplementation(const ObjCProtocolDecl *PD);
void EmitFunction(const FunctionDecl *FD);
void EmitGlobalVar(const VarDecl *D);
void EmitGlobalVarInit(const VarDecl *D);