Reorder #includes, drop unneeded one
authorChris Lattner <sabre@nondot.org>
Tue, 28 Oct 2003 19:08:15 +0000 (19:08 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 28 Oct 2003 19:08:15 +0000 (19:08 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9548 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvm-nm/llvm-nm.cpp

index 16e92570cb50d279d906f655920f23e0c22835bc..f7a0ef6746504752724398dbf7240c4e340c54c2 100644 (file)
 //
 //===----------------------------------------------------------------------===//
 
-#include "Support/CommandLine.h"
-#include "llvm/Bytecode/Reader.h"
-#include "llvm/GlobalValue.h"
 #include "llvm/Module.h"
+#include "llvm/Bytecode/Reader.h"
+#include "Support/CommandLine.h"
 #include <cctype>
 
 namespace {