]> granicus.if.org Git - clang/commitdiff
Minor include pruning.
authorBenjamin Kramer <benny.kra@googlemail.com>
Wed, 31 Mar 2010 15:04:05 +0000 (15:04 +0000)
committerBenjamin Kramer <benny.kra@googlemail.com>
Wed, 31 Mar 2010 15:04:05 +0000 (15:04 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@100007 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/CodeGen/CodeGenOptions.h
lib/CodeGen/CGBlocks.cpp
lib/CodeGen/CGBlocks.h
lib/CodeGen/CGDebugInfo.h
lib/CodeGen/CGObjCRuntime.h
lib/CodeGen/CGVtable.h
lib/CodeGen/CodeGenFunction.h
lib/CodeGen/CodeGenModule.h
lib/CodeGen/CodeGenTypes.h

index 85c6c3e3abcf11dfeadca28cdd536c2fd0b25b51..638ed516ed0b870eb4245a3630bdff7922402a54 100644 (file)
@@ -15,7 +15,6 @@
 #define LLVM_CLANG_CODEGEN_CODEGENOPTIONS_H
 
 #include <string>
-#include <vector>
 
 namespace clang {
 
index 9217859ef1f64c90b412e0eb572462422eca9338..509734123b0c7c6b710d27b01471b1e31d49f56e 100644 (file)
@@ -17,6 +17,7 @@
 #include "CodeGenModule.h"
 #include "clang/AST/DeclObjC.h"
 #include "llvm/Module.h"
+#include "llvm/ADT/SmallSet.h"
 #include "llvm/Target/TargetData.h"
 #include <algorithm>
 
index e91319f6ddab653fd57ab01e0656a383b5d5fb9f..efee0e36b853180a2adb7467bafe89b927bff2cd 100644 (file)
@@ -17,7 +17,6 @@
 #include "CodeGenTypes.h"
 #include "clang/AST/Type.h"
 #include "llvm/Module.h"
-#include "llvm/ADT/DenseMap.h"
 #include "llvm/ADT/SmallVector.h"
 #include "clang/Basic/TargetInfo.h"
 #include "clang/AST/CharUnits.h"
index e4f21f4d1399c1e11f4ad9f0f26bdef89ea9285c..8397245e31841ed9274c692aabb8a98dfe177ff6 100644 (file)
@@ -21,7 +21,6 @@
 #include "llvm/Analysis/DebugInfo.h"
 #include "llvm/Support/ValueHandle.h"
 #include "llvm/Support/Allocator.h"
-#include <map>
 
 #include "CGBuilder.h"
 
index ff5d40bfbc8712daf785290fa18e81f7f7fd03ae..b781940ffad5343e6330b2903582e6b2733a8d0d 100644 (file)
@@ -16,7 +16,6 @@
 #ifndef CLANG_CODEGEN_OBCJRUNTIME_H
 #define CLANG_CODEGEN_OBCJRUNTIME_H
 #include "clang/Basic/IdentifierTable.h" // Selector
-#include "llvm/ADT/SmallVector.h"
 #include "clang/AST/DeclObjC.h"
 #include <string>
 
index ca874f859963e32d850ba94a37b5ce9ef8c6d839..60735554d56e60f325787e523757f1e508736579 100644 (file)
@@ -15,7 +15,6 @@
 #define CLANG_CODEGEN_CGVTABLE_H
 
 #include "llvm/ADT/DenseMap.h"
-#include "llvm/ADT/DenseSet.h"
 #include "llvm/GlobalVariable.h"
 #include "GlobalDecl.h"
 
index ccbbf849838bc607489ff9f8a3ebc388c232ecb5..f21350d0f2d9948e150ae33afc5d8e4477bee75d 100644 (file)
@@ -22,7 +22,6 @@
 #include "llvm/ADT/DenseMap.h"
 #include "llvm/ADT/SmallVector.h"
 #include "llvm/Support/ValueHandle.h"
-#include <map>
 #include "CodeGenModule.h"
 #include "CGBlocks.h"
 #include "CGBuilder.h"
index 941dca82abd05f4bd2dc98700f719e715d69bbb7..3c57c0b8cbfc8702da1c2f91c2794aba8d4336a9 100644 (file)
@@ -31,7 +31,6 @@
 #include "llvm/ADT/StringSet.h"
 #include "llvm/ADT/SmallPtrSet.h"
 #include "llvm/Support/ValueHandle.h"
-#include <list>
 
 namespace llvm {
   class Module;
index 70166b1e22728c7d524b3883855c03262350bcfc..9b74106d61cebc2f113bc62c75281d4a1e9376d3 100644 (file)
@@ -16,7 +16,6 @@
 
 #include "llvm/Module.h"
 #include "llvm/ADT/DenseMap.h"
-#include "llvm/ADT/SmallSet.h"
 #include <vector>
 
 #include "CGCall.h"