aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2015-03-23 19:32:43 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2015-03-23 19:32:43 +0000
commit799003bf8c4e9637091c1e16b214d065d15958e6 (patch)
tree9b537fe2d4a3deb4f4a4f649a29d0ee221f0fca3 /llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp
parentc54920a123fd3049bdbaa5413c0d5d7e593a4668 (diff)
downloadllvm-799003bf8c4e9637091c1e16b214d065d15958e6.zip
llvm-799003bf8c4e9637091c1e16b214d065d15958e6.tar.gz
llvm-799003bf8c4e9637091c1e16b214d065d15958e6.tar.bz2
Re-sort includes with sort-includes.py and insert raw_ostream.h where it's used.
llvm-svn: 232998
Diffstat (limited to 'llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp')
-rw-r--r--llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp b/llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp
index 978ef38..8113834 100644
--- a/llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp
+++ b/llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp
@@ -16,6 +16,7 @@
#include "llvm/ADT/Statistic.h"
#include "llvm/Analysis/MemoryBuiltins.h"
#include "llvm/Analysis/TargetFolder.h"
+#include "llvm/Analysis/TargetLibraryInfo.h"
#include "llvm/IR/DataLayout.h"
#include "llvm/IR/IRBuilder.h"
#include "llvm/IR/InstIterator.h"
@@ -24,7 +25,6 @@
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/raw_ostream.h"
-#include "llvm/Analysis/TargetLibraryInfo.h"
using namespace llvm;
#define DEBUG_TYPE "bounds-checking"