[llvm-commits] CVS: llvm/tools/llvm-nm/llvm-nm.cpp
Chris Lattner
lattner at cs.uiuc.edu
Tue Oct 28 13:09:06 PST 2003
Changes in directory llvm/tools/llvm-nm:
llvm-nm.cpp updated: 1.5 -> 1.6
---
Log message:
Reorder #includes, drop unneeded one
---
Diffs of the changes: (+2 -3)
Index: llvm/tools/llvm-nm/llvm-nm.cpp
diff -u llvm/tools/llvm-nm/llvm-nm.cpp:1.5 llvm/tools/llvm-nm/llvm-nm.cpp:1.6
--- llvm/tools/llvm-nm/llvm-nm.cpp:1.5 Mon Oct 20 12:54:58 2003
+++ llvm/tools/llvm-nm/llvm-nm.cpp Tue Oct 28 13:08:15 2003
@@ -16,10 +16,9 @@
//
//===----------------------------------------------------------------------===//
-#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 {
More information about the llvm-commits
mailing list