diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2014-01-07 11:48:04 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2014-01-07 11:48:04 +0000 |
commit | 8a8cd2bab94f5f1e41e7e1a16747e3c6b537009b (patch) | |
tree | 5c16f0842449dcb1cb901a270b602367b67c7180 /llvm/lib/ExecutionEngine/OProfileJIT/OProfileWrapper.cpp | |
parent | 7d11d99d2049762d3a2f769b39e85e8c217a3544 (diff) | |
download | bcm5719-llvm-8a8cd2bab94f5f1e41e7e1a16747e3c6b537009b.tar.gz bcm5719-llvm-8a8cd2bab94f5f1e41e7e1a16747e3c6b537009b.zip |
Re-sort all of the includes with ./utils/sort_includes.py so that
subsequent changes are easier to review. About to fix some layering
issues, and wanted to separate out the necessary churn.
Also comment and sink the include of "Windows.h" in three .inc files to
match the usage in Memory.inc.
llvm-svn: 198685
Diffstat (limited to 'llvm/lib/ExecutionEngine/OProfileJIT/OProfileWrapper.cpp')
-rw-r--r-- | llvm/lib/ExecutionEngine/OProfileJIT/OProfileWrapper.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/ExecutionEngine/OProfileJIT/OProfileWrapper.cpp b/llvm/lib/ExecutionEngine/OProfileJIT/OProfileWrapper.cpp index 61d8dc21dec..6702e20d50d 100644 --- a/llvm/lib/ExecutionEngine/OProfileJIT/OProfileWrapper.cpp +++ b/llvm/lib/ExecutionEngine/OProfileJIT/OProfileWrapper.cpp @@ -15,12 +15,12 @@ #define DEBUG_TYPE "oprofile-wrapper" #include "llvm/ExecutionEngine/OProfileWrapper.h" +#include "llvm/ADT/SmallString.h" #include "llvm/Support/Debug.h" -#include "llvm/Support/raw_ostream.h" #include "llvm/Support/DynamicLibrary.h" #include "llvm/Support/Mutex.h" #include "llvm/Support/MutexGuard.h" -#include "llvm/ADT/SmallString.h" +#include "llvm/Support/raw_ostream.h" #include <cstring> #include <dirent.h> #include <fcntl.h> |