summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-09-05 20:08:15 +0000
committerChris Lattner <sabre@nondot.org>2003-09-05 20:08:15 +0000
commitfd13129bdf7324b2e8181a653897269aaaecc4e8 (patch)
treef3af38d2c4e146db215ca703ab9773bb7fbf32e5 /tools
parentf10da33e21e84c9a4dc5560d93bc5ac0fdf13cf3 (diff)
downloadexternal_llvm-fd13129bdf7324b2e8181a653897269aaaecc4e8.zip
external_llvm-fd13129bdf7324b2e8181a653897269aaaecc4e8.tar.gz
external_llvm-fd13129bdf7324b2e8181a653897269aaaecc4e8.tar.bz2
Reorder #includes to follow LLVM conventions
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8375 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r--tools/lli/lli.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/lli/lli.cpp b/tools/lli/lli.cpp
index ebe618a..a4e75d8 100644
--- a/tools/lli/lli.cpp
+++ b/tools/lli/lli.cpp
@@ -9,15 +9,15 @@
//
//===----------------------------------------------------------------------===//
-#include "Support/CommandLine.h"
-#include "Support/Debug.h"
+#include "llvm/DerivedTypes.h"
+#include "llvm/Module.h"
+#include "llvm/Bytecode/Reader.h"
#include "llvm/ExecutionEngine/ExecutionEngine.h"
#include "llvm/ExecutionEngine/GenericValue.h"
-#include "llvm/Bytecode/Reader.h"
-#include "llvm/Module.h"
#include "llvm/Target/TargetMachineImpls.h"
-#include "llvm/DerivedTypes.h"
#include "llvm/Target/TargetData.h"
+#include "Support/CommandLine.h"
+#include "Support/Debug.h"
namespace {
cl::opt<std::string>