Order #includes as per the style guide.
authorMisha Brukman <brukman+llvm@gmail.com>
Tue, 14 Oct 2003 21:42:11 +0000 (21:42 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Tue, 14 Oct 2003 21:42:11 +0000 (21:42 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9128 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp

index 8aeb2c03d338cbdc541aebaa5ba07fc0838f0874..b92e3c6a02364b5f8df0802e0f1025fa76fdcdf3 100644 (file)
 
 #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> &);