summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2003-10-14 21:42:11 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2003-10-14 21:42:11 +0000
commitb8d15b2ad0a2266b275a00f07410e6c9d9ca6695 (patch)
tree86d2bb7d390c490f278fd742c4aec0ce42292aee /lib
parentc4fb6fdd8677530d9b1db34b6254edb0094b78ed (diff)
downloadllvm-b8d15b2ad0a2266b275a00f07410e6c9d9ca6695.tar.gz
llvm-b8d15b2ad0a2266b275a00f07410e6c9d9ca6695.tar.bz2
llvm-b8d15b2ad0a2266b275a00f07410e6c9d9ca6695.tar.xz
Order #includes as per the style guide.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9128 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp b/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp
index 8aeb2c03d3..b92e3c6a02 100644
--- a/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp
+++ b/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp
@@ -14,15 +14,15 @@
#include "Interpreter.h"
#include "ExecutionAnnotations.h"
-#include "llvm/Module.h"
#include "llvm/DerivedTypes.h"
+#include "llvm/Module.h"
#include "llvm/SymbolTable.h"
#include "llvm/Target/TargetData.h"
-#include <map>
+#include "Support/DynamicLinker.h"
#include "Config/dlfcn.h"
#include "Config/link.h"
#include <cmath>
-#include "Support/DynamicLinker.h"
+#include <map>
using std::vector;
typedef GenericValue (*ExFunc)(FunctionType *, const vector<GenericValue> &);