[llvm-commits] [llvm] r79857 - /llvm/trunk/lib/Support/CommandLine.cpp

Chris Lattner sabre at nondot.org
Sun Aug 23 11:09:02 PDT 2009


Author: lattner
Date: Sun Aug 23 13:09:02 2009
New Revision: 79857

URL: http://llvm.org/viewvc/llvm-project?rev=79857&view=rev
Log:
clean up #includes.

Modified:
    llvm/trunk/lib/Support/CommandLine.cpp

Modified: llvm/trunk/lib/Support/CommandLine.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/CommandLine.cpp?rev=79857&r1=79856&r2=79857&view=diff

==============================================================================
--- llvm/trunk/lib/Support/CommandLine.cpp (original)
+++ llvm/trunk/lib/Support/CommandLine.cpp Sun Aug 23 13:09:02 2009
@@ -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;
 





More information about the llvm-commits mailing list