diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-23 18:09:02 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-23 18:09:02 +0000 |
commit | 36b3caf9c0498203a03a56e6bb97fc17b2c8e28e (patch) | |
tree | b33ef68632f713bb681821bda82c062849398555 /llvm/lib/Support/CommandLine.cpp | |
parent | a9e1d3f06526c9dcf482e4c1ff44228658f4d1b8 (diff) | |
download | bcm5719-llvm-36b3caf9c0498203a03a56e6bb97fc17b2c8e28e.tar.gz bcm5719-llvm-36b3caf9c0498203a03a56e6bb97fc17b2c8e28e.zip |
clean up #includes.
llvm-svn: 79857
Diffstat (limited to 'llvm/lib/Support/CommandLine.cpp')
-rw-r--r-- | llvm/lib/Support/CommandLine.cpp | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/llvm/lib/Support/CommandLine.cpp b/llvm/lib/Support/CommandLine.cpp index ec3af841682..d45694b0461 100644 --- a/llvm/lib/Support/CommandLine.cpp +++ b/llvm/lib/Support/CommandLine.cpp @@ -16,23 +16,19 @@ // //===----------------------------------------------------------------------===// -#include "llvm/Config/config.h" -#include "llvm/ADT/OwningPtr.h" #include "llvm/Support/CommandLine.h" #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/MemoryBuffer.h" #include "llvm/Support/ManagedStatic.h" +#include "llvm/Support/raw_ostream.h" #include "llvm/Target/TargetRegistry.h" #include "llvm/System/Path.h" -#include <algorithm> -#include <functional> +#include "llvm/ADT/OwningPtr.h" +#include "llvm/Config/config.h" #include <map> -#include <ostream> #include <set> -#include <cstdlib> #include <cerrno> -#include <cstring> -#include <climits> +#include <cstdlib> using namespace llvm; using namespace cl; |