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 | ca179340ce51ca394a836444d4dd1974ce18e1a4 (patch) | |
tree | 6dba84170fea11d5cb1de134a44eb5b5f0b66ae4 /lib/Support/CommandLine.cpp | |
parent | 67f99986fa2a2eb298717b786ed2e89f45a529cf (diff) |
clean up #includes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79857 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/CommandLine.cpp')
-rw-r--r-- | lib/Support/CommandLine.cpp | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/lib/Support/CommandLine.cpp b/lib/Support/CommandLine.cpp index ec3af84168..d45694b046 100644 --- a/lib/Support/CommandLine.cpp +++ b/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; |