diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2003-10-14 21:42:11 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2003-10-14 21:42:11 +0000 |
commit | 1d2d8ec8531d9436a945664383aa6440df2d2051 (patch) | |
tree | 9f4c4d271c628d427f77716a6f822828ee50e181 /llvm/lib | |
parent | 5b255e59ac8ebd0453b20af6399b13cdd9061ef6 (diff) | |
download | bcm5719-llvm-1d2d8ec8531d9436a945664383aa6440df2d2051.tar.gz bcm5719-llvm-1d2d8ec8531d9436a945664383aa6440df2d2051.zip |
Order #includes as per the style guide.
llvm-svn: 9128
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp b/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp index 8aeb2c03d33..b92e3c6a023 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp +++ b/llvm/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> &); |