diff options
author | Chris Lattner <sabre@nondot.org> | 2003-09-05 20:08:15 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-09-05 20:08:15 +0000 |
commit | fd13129bdf7324b2e8181a653897269aaaecc4e8 (patch) | |
tree | f3af38d2c4e146db215ca703ab9773bb7fbf32e5 /lib | |
parent | f10da33e21e84c9a4dc5560d93bc5ac0fdf13cf3 (diff) | |
download | external_llvm-fd13129bdf7324b2e8181a653897269aaaecc4e8.tar.gz external_llvm-fd13129bdf7324b2e8181a653897269aaaecc4e8.tar.bz2 external_llvm-fd13129bdf7324b2e8181a653897269aaaecc4e8.zip |
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 'lib')
-rw-r--r-- | lib/ExecutionEngine/ExecutionEngine.cpp | 10 | ||||
-rw-r--r-- | lib/ExecutionEngine/Interpreter/Interpreter.h | 8 |
2 files changed, 9 insertions, 9 deletions
diff --git a/lib/ExecutionEngine/ExecutionEngine.cpp b/lib/ExecutionEngine/ExecutionEngine.cpp index 8dc1d5a84b..b7aa3ba87f 100644 --- a/lib/ExecutionEngine/ExecutionEngine.cpp +++ b/lib/ExecutionEngine/ExecutionEngine.cpp @@ -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"); diff --git a/lib/ExecutionEngine/Interpreter/Interpreter.h b/lib/ExecutionEngine/Interpreter/Interpreter.h index 5199e1fa60..26ed2dc6d1 100644 --- a/lib/ExecutionEngine/Interpreter/Interpreter.h +++ b/lib/ExecutionEngine/Interpreter/Interpreter.h @@ -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 |