aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Transforms/Utils/LoopVersioning.cpp
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2015-10-26 18:40:56 +0000
committerDavid Blaikie <dblaikie@gmail.com>2015-10-26 18:40:56 +0000
commit94c83370b55cf30d1b3004fe11b67c8f8816a8d4 (patch)
treec9e778ee647430d5f281b458770691b7669c2d08 /llvm/lib/Transforms/Utils/LoopVersioning.cpp
parent5d303285b9825a44f233102766be39bd1cff4de9 (diff)
downloadllvm-94c83370b55cf30d1b3004fe11b67c8f8816a8d4.zip
llvm-94c83370b55cf30d1b3004fe11b67c8f8816a8d4.tar.gz
llvm-94c83370b55cf30d1b3004fe11b67c8f8816a8d4.tar.bz2
Move the canonical header to the top of its matching cpp file as per coding convention
This ensures that the header will be verified to be standalone (and avoid mistakes like the one fixed in r251178) llvm-svn: 251326
Diffstat (limited to 'llvm/lib/Transforms/Utils/LoopVersioning.cpp')
-rw-r--r--llvm/lib/Transforms/Utils/LoopVersioning.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Utils/LoopVersioning.cpp b/llvm/lib/Transforms/Utils/LoopVersioning.cpp
index f4504f8..bf7ed73 100644
--- a/llvm/lib/Transforms/Utils/LoopVersioning.cpp
+++ b/llvm/lib/Transforms/Utils/LoopVersioning.cpp
@@ -13,12 +13,13 @@
//
//===----------------------------------------------------------------------===//
+#include "llvm/Transforms/Utils/LoopVersioning.h"
+
#include "llvm/Analysis/LoopAccessAnalysis.h"
#include "llvm/Analysis/LoopInfo.h"
#include "llvm/IR/Dominators.h"
#include "llvm/Transforms/Utils/BasicBlockUtils.h"
#include "llvm/Transforms/Utils/Cloning.h"
-#include "llvm/Transforms/Utils/LoopVersioning.h"
using namespace llvm;