diff options
| author | Daniel Dunbar <daniel@zuster.org> | 2009-11-16 22:38:48 +0000 |
|---|---|---|
| committer | Daniel Dunbar <daniel@zuster.org> | 2009-11-16 22:38:48 +0000 |
| commit | 2cbf4a7d6e94fbb8e64ac2f515e65a786d1b21cb (patch) | |
| tree | b91fa569ac803188456b7e6ac46c350ddc6e86b4 /clang/tools/clang-cc | |
| parent | 24347f7cdaa9ca95c599b9495104317ce4a7cbca (diff) | |
| download | bcm5719-llvm-2cbf4a7d6e94fbb8e64ac2f515e65a786d1b21cb.tar.gz bcm5719-llvm-2cbf4a7d6e94fbb8e64ac2f515e65a786d1b21cb.zip | |
Trim includes.
llvm-svn: 88982
Diffstat (limited to 'clang/tools/clang-cc')
| -rw-r--r-- | clang/tools/clang-cc/clang-cc.cpp | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/clang/tools/clang-cc/clang-cc.cpp b/clang/tools/clang-cc/clang-cc.cpp index fb397d5e741..975ec53fb52 100644 --- a/clang/tools/clang-cc/clang-cc.cpp +++ b/clang/tools/clang-cc/clang-cc.cpp @@ -16,6 +16,7 @@ //===----------------------------------------------------------------------===// #include "Options.h" +#include "clang/Basic/Diagnostic.h" #include "clang/Basic/FileManager.h" #include "clang/Basic/SourceManager.h" #include "clang/Basic/TargetInfo.h" @@ -25,30 +26,19 @@ #include "clang/Frontend/FrontendActions.h" #include "clang/Frontend/FrontendDiagnostic.h" #include "clang/Frontend/FrontendPluginRegistry.h" -#include "clang/Frontend/PathDiagnosticClients.h" -#include "clang/Frontend/PreprocessorOptions.h" -#include "clang/Frontend/PreprocessorOutputOptions.h" #include "clang/Frontend/VerifyDiagnosticsClient.h" -#include "llvm/ADT/OwningPtr.h" -#include "llvm/Config/config.h" #include "llvm/LLVMContext.h" -#include "llvm/Support/CommandLine.h" +#include "llvm/ADT/OwningPtr.h" #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/ManagedStatic.h" #include "llvm/Support/PluginLoader.h" #include "llvm/Support/PrettyStackTrace.h" -#include "llvm/Support/Registry.h" #include "llvm/Support/Timer.h" #include "llvm/Support/raw_ostream.h" #include "llvm/System/Host.h" #include "llvm/System/Path.h" #include "llvm/System/Signals.h" #include "llvm/Target/TargetSelect.h" -#include <cstdlib> -#if HAVE_SYS_TYPES_H -# include <sys/types.h> -#endif - using namespace clang; //===----------------------------------------------------------------------===// |

