diff options
author | Reid Kleckner <reid@kleckner.net> | 2013-06-19 17:07:50 +0000 |
---|---|---|
committer | Reid Kleckner <reid@kleckner.net> | 2013-06-19 17:07:50 +0000 |
commit | d29f1342c25a70ffbc60cb380ee6cc70453b1cf2 (patch) | |
tree | 67b208f09a9164dab7b5b9a229e71b6eef23333f /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 374f0e2a1fb09364bfe4ffaf211f1f7549bab1c6 (diff) | |
download | llvm-d29f1342c25a70ffbc60cb380ee6cc70453b1cf2.zip llvm-d29f1342c25a70ffbc60cb380ee6cc70453b1cf2.tar.gz llvm-d29f1342c25a70ffbc60cb380ee6cc70453b1cf2.tar.bz2 |
[CodeGen] Move EHScopeStack into its own header
CGCleanup.h isn't meant to be included by all of CodeGen according to
John.
llvm-svn: 184321
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 9071e07..b7e2086 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -15,9 +15,9 @@ #define CLANG_CODEGEN_CODEGENFUNCTION_H #include "CGBuilder.h" -#include "CGCleanup.h" #include "CGDebugInfo.h" #include "CGValue.h" +#include "EHScopeStack.h" #include "CodeGenModule.h" #include "clang/AST/CharUnits.h" #include "clang/AST/ExprCXX.h" |