diff options
author | Daniel Dunbar <daniel@zuster.org> | 2008-08-13 00:59:25 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2008-08-13 00:59:25 +0000 |
commit | af2f62ce32e462f256855cd24b06dec4755d2827 (patch) | |
tree | dd635c793ee272fd284f0ad481ffc9c3f6d52e1e /lib/CodeGen/CodeGenModule.h | |
parent | 450202284e7e0a1758be935ee6ae1296cc9dc97d (diff) |
Change ObjCRuntime GenerateProtocol[Ref] methods to take
ObjCProtocolDecl directly.
Implement CodeGen support for forward protocol decls (no-ops are so
nice to implement).
Also moved CGObjCRuntime.h out of CodeGenModule.h
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@54709 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | lib/CodeGen/CodeGenModule.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CodeGenModule.h b/lib/CodeGen/CodeGenModule.h index 3f30cd3283..a837b6369c 100644 --- a/lib/CodeGen/CodeGenModule.h +++ b/lib/CodeGen/CodeGenModule.h @@ -15,7 +15,6 @@ #define CLANG_CODEGEN_CODEGENMODULE_H #include "CodeGenTypes.h" -#include "CGObjCRuntime.h" #include "clang/AST/Attr.h" #include "llvm/ADT/DenseMap.h" #include "llvm/ADT/StringMap.h" @@ -51,6 +50,7 @@ namespace CodeGen { class CodeGenFunction; class CGDebugInfo; + class CGObjCRuntime; /// CodeGenModule - This class organizes the cross-module state that is used /// while generating LLVM code. |