summaryrefslogtreecommitdiff
path: root/lib/Transforms/Instrumentation/AddressSanitizer.cpp
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2013-01-19 08:03:47 +0000
committerChandler Carruth <chandlerc@gmail.com>2013-01-19 08:03:47 +0000
commit90230c84668269fbd53d163e398cd16486d5d414 (patch)
tree2e87945e8729f21862c82883ba9674dd62b4debb /lib/Transforms/Instrumentation/AddressSanitizer.cpp
parente11dda8631f1e65417971ee0c2f7a661fc7d0fd7 (diff)
downloadllvm-90230c84668269fbd53d163e398cd16486d5d414.tar.gz
llvm-90230c84668269fbd53d163e398cd16486d5d414.tar.bz2
llvm-90230c84668269fbd53d163e398cd16486d5d414.tar.xz
Sort all of the includes. Several files got checked in with mis-sorted
includes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@172891 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Instrumentation/AddressSanitizer.cpp')
-rw-r--r--lib/Transforms/Instrumentation/AddressSanitizer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Instrumentation/AddressSanitizer.cpp b/lib/Transforms/Instrumentation/AddressSanitizer.cpp
index 1aad842bcb..8b6d64d5ba 100644
--- a/lib/Transforms/Instrumentation/AddressSanitizer.cpp
+++ b/lib/Transforms/Instrumentation/AddressSanitizer.cpp
@@ -16,7 +16,6 @@
#define DEBUG_TYPE "asan"
#include "llvm/Transforms/Instrumentation.h"
-#include "llvm/Transforms/Utils/BlackList.h"
#include "llvm/ADT/ArrayRef.h"
#include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/DepthFirstIterator.h"
@@ -43,6 +42,7 @@
#include "llvm/Support/system_error.h"
#include "llvm/Target/TargetMachine.h"
#include "llvm/Transforms/Utils/BasicBlockUtils.h"
+#include "llvm/Transforms/Utils/BlackList.h"
#include "llvm/Transforms/Utils/Local.h"
#include "llvm/Transforms/Utils/ModuleUtils.h"
#include <algorithm>