diff options
author | Daniel Dunbar <daniel@zuster.org> | 2008-08-11 05:00:27 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2008-08-11 05:00:27 +0000 |
commit | ad319a73f28f98ebeb586d2ce8ceb0a04b612062 (patch) | |
tree | 3a334361e8093325322cea2ff837e158ad2b783f /clang | |
parent | 221fa94e404174160e4e83cd21cfa439cc37f199 (diff) | |
download | bcm5719-llvm-ad319a73f28f98ebeb586d2ce8ceb0a04b612062.tar.gz bcm5719-llvm-ad319a73f28f98ebeb586d2ce8ceb0a04b612062.zip |
More #include cleaning
- Remove internal uses of AST.h
llvm-svn: 54628
Diffstat (limited to 'clang')
-rw-r--r-- | clang/lib/CodeGen/CGDecl.cpp | 2 | ||||
-rw-r--r-- | clang/lib/CodeGen/CGExpr.cpp | 2 | ||||
-rw-r--r-- | clang/lib/CodeGen/CGExprAgg.cpp | 3 | ||||
-rw-r--r-- | clang/lib/CodeGen/CGExprComplex.cpp | 3 | ||||
-rw-r--r-- | clang/lib/CodeGen/CGExprConstant.cpp | 3 | ||||
-rw-r--r-- | clang/lib/CodeGen/CGExprScalar.cpp | 3 | ||||
-rw-r--r-- | clang/lib/CodeGen/CGStmt.cpp | 3 | ||||
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.cpp | 2 | ||||
-rw-r--r-- | clang/lib/CodeGen/CodeGenTypes.cpp | 3 |
9 files changed, 15 insertions, 9 deletions
diff --git a/clang/lib/CodeGen/CGDecl.cpp b/clang/lib/CodeGen/CGDecl.cpp index 2d30ed57460..ff0cb124cc4 100644 --- a/clang/lib/CodeGen/CGDecl.cpp +++ b/clang/lib/CodeGen/CGDecl.cpp @@ -14,7 +14,7 @@ #include "CGDebugInfo.h" #include "CodeGenFunction.h" #include "CodeGenModule.h" -#include "clang/AST/AST.h" +#include "clang/AST/ASTContext.h" #include "clang/Basic/SourceManager.h" #include "clang/Basic/TargetInfo.h" #include "llvm/GlobalVariable.h" diff --git a/clang/lib/CodeGen/CGExpr.cpp b/clang/lib/CodeGen/CGExpr.cpp index 19ac711f79b..f6cca8156a6 100644 --- a/clang/lib/CodeGen/CGExpr.cpp +++ b/clang/lib/CodeGen/CGExpr.cpp @@ -13,7 +13,7 @@ #include "CodeGenFunction.h" #include "CodeGenModule.h" -#include "clang/AST/AST.h" +#include "clang/AST/ASTContext.h" #include "clang/Basic/TargetInfo.h" #include "llvm/Constants.h" #include "llvm/DerivedTypes.h" diff --git a/clang/lib/CodeGen/CGExprAgg.cpp b/clang/lib/CodeGen/CGExprAgg.cpp index 40f28a5c33d..5fa7ef5c524 100644 --- a/clang/lib/CodeGen/CGExprAgg.cpp +++ b/clang/lib/CodeGen/CGExprAgg.cpp @@ -13,7 +13,8 @@ #include "CodeGenFunction.h" #include "CodeGenModule.h" -#include "clang/AST/AST.h" +#include "clang/AST/ASTContext.h" +#include "clang/AST/StmtVisitor.h" #include "llvm/Constants.h" #include "llvm/Function.h" #include "llvm/GlobalVariable.h" diff --git a/clang/lib/CodeGen/CGExprComplex.cpp b/clang/lib/CodeGen/CGExprComplex.cpp index 0a03adfcf75..dacbd865c3d 100644 --- a/clang/lib/CodeGen/CGExprComplex.cpp +++ b/clang/lib/CodeGen/CGExprComplex.cpp @@ -13,7 +13,8 @@ #include "CodeGenFunction.h" #include "CodeGenModule.h" -#include "clang/AST/AST.h" +#include "clang/AST/ASTContext.h" +#include "clang/AST/StmtVisitor.h" #include "llvm/Constants.h" #include "llvm/Function.h" #include "llvm/ADT/SmallString.h" diff --git a/clang/lib/CodeGen/CGExprConstant.cpp b/clang/lib/CodeGen/CGExprConstant.cpp index db8003e43e0..b1f7c5161d7 100644 --- a/clang/lib/CodeGen/CGExprConstant.cpp +++ b/clang/lib/CodeGen/CGExprConstant.cpp @@ -13,7 +13,8 @@ #include "CodeGenFunction.h" #include "CodeGenModule.h" -#include "clang/AST/AST.h" +#include "clang/AST/ASTContext.h" +#include "clang/AST/StmtVisitor.h" #include "llvm/Constants.h" #include "llvm/Function.h" #include "llvm/GlobalVariable.h" diff --git a/clang/lib/CodeGen/CGExprScalar.cpp b/clang/lib/CodeGen/CGExprScalar.cpp index 17ef1ed35d8..63b8efc5dcb 100644 --- a/clang/lib/CodeGen/CGExprScalar.cpp +++ b/clang/lib/CodeGen/CGExprScalar.cpp @@ -13,7 +13,8 @@ #include "CodeGenFunction.h" #include "CodeGenModule.h" -#include "clang/AST/AST.h" +#include "clang/AST/ASTContext.h" +#include "clang/AST/StmtVisitor.h" #include "clang/Basic/TargetInfo.h" #include "llvm/Constants.h" #include "llvm/Function.h" diff --git a/clang/lib/CodeGen/CGStmt.cpp b/clang/lib/CodeGen/CGStmt.cpp index a5cf946ea62..0246ba2ee8c 100644 --- a/clang/lib/CodeGen/CGStmt.cpp +++ b/clang/lib/CodeGen/CGStmt.cpp @@ -14,7 +14,8 @@ #include "CGDebugInfo.h" #include "CodeGenModule.h" #include "CodeGenFunction.h" -#include "clang/AST/AST.h" +#include "clang/AST/ASTContext.h" +#include "clang/AST/StmtVisitor.h" #include "clang/Basic/TargetInfo.h" #include "llvm/Constants.h" #include "llvm/DerivedTypes.h" diff --git a/clang/lib/CodeGen/CodeGenFunction.cpp b/clang/lib/CodeGen/CodeGenFunction.cpp index e153c21b774..6b731917ed6 100644 --- a/clang/lib/CodeGen/CodeGenFunction.cpp +++ b/clang/lib/CodeGen/CodeGenFunction.cpp @@ -15,7 +15,7 @@ #include "CodeGenModule.h" #include "CGDebugInfo.h" #include "clang/Basic/TargetInfo.h" -#include "clang/AST/AST.h" +#include "clang/AST/ASTContext.h" #include "llvm/CallingConv.h" #include "llvm/Constants.h" #include "llvm/DerivedTypes.h" diff --git a/clang/lib/CodeGen/CodeGenTypes.cpp b/clang/lib/CodeGen/CodeGenTypes.cpp index dcdacf32791..d57550d0f07 100644 --- a/clang/lib/CodeGen/CodeGenTypes.cpp +++ b/clang/lib/CodeGen/CodeGenTypes.cpp @@ -13,7 +13,8 @@ #include "CodeGenTypes.h" #include "clang/Basic/TargetInfo.h" -#include "clang/AST/AST.h" +#include "clang/AST/ASTContext.h" +#include "clang/AST/Expr.h" #include "clang/AST/RecordLayout.h" #include "llvm/DerivedTypes.h" #include "llvm/Module.h" |