Reorder #includes to follow LLVM conventions
authorChris Lattner <sabre@nondot.org>
Fri, 5 Sep 2003 20:08:15 +0000 (20:08 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 5 Sep 2003 20:08:15 +0000 (20:08 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8375 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ExecutionEngine/ExecutionEngine.cpp
lib/ExecutionEngine/Interpreter/Interpreter.h
tools/lli/lli.cpp

index 8dc1d5a84baa1879f41f21f78d01d687d054f469..b7aa3ba87f52c40cf7e9c2dd0004ebb5d2f94e89 100644 (file)
@@ -6,17 +6,17 @@
 //===----------------------------------------------------------------------===//
 
 #define DEBUG_TYPE "jit"
-#include "Support/Debug.h"
-#include "Support/Statistic.h"
 #include "llvm/ExecutionEngine/ExecutionEngine.h"
-#include "llvm/ExecutionEngine/GenericValue.h"
+#include "JIT/VM.h"
+#include "Interpreter/Interpreter.h"
 #include "llvm/DerivedTypes.h"
 #include "llvm/Constants.h"
 #include "llvm/Module.h"
+#include "llvm/ExecutionEngine/GenericValue.h"
 #include "llvm/Target/TargetData.h"
+#include "Support/Debug.h"
+#include "Support/Statistic.h"
 #include "Config/dlfcn.h"
-#include "JIT/VM.h"
-#include "Interpreter/Interpreter.h"
 
 Statistic<> NumInitBytes("lli", "Number of bytes of global vars initialized");
 
index 5199e1fa60a7b141d191eb8c6bce45f627273388..26ed2dc6d156141cc89ff682433cc0b16db88c0d 100644 (file)
@@ -7,13 +7,13 @@
 #ifndef LLI_INTERPRETER_H
 #define LLI_INTERPRETER_H
 
+#include "llvm/BasicBlock.h"
+#include "llvm/Assembly/CachedWriter.h"
 #include "llvm/ExecutionEngine/ExecutionEngine.h"
 #include "llvm/ExecutionEngine/GenericValue.h"
-#include "Support/DataTypes.h"
-#include "llvm/Assembly/CachedWriter.h"
-#include "llvm/Target/TargetData.h"
-#include "llvm/BasicBlock.h"
 #include "llvm/Support/InstVisitor.h"
+#include "llvm/Target/TargetData.h"
+#include "Support/DataTypes.h"
 
 extern CachedWriter CW;     // Object to accelerate printing of LLVM
 
index ebe618a90eba2f898e1e717eb7813ea37b503f75..a4e75d8c82def37ab2b89ec1d7c0052bbd6bbf26 100644 (file)
@@ -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>