Move the canonical header to the top of its matching cpp file as per coding convention
authorDavid Blaikie <dblaikie@gmail.com>
Mon, 26 Oct 2015 18:40:56 +0000 (18:40 +0000)
committerDavid Blaikie <dblaikie@gmail.com>
Mon, 26 Oct 2015 18:40:56 +0000 (18:40 +0000)
This ensures that the header will be verified to be standalone (and
avoid mistakes like the one fixed in r251178)

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@251326 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Utils/LoopVersioning.cpp

index f4504f82a02d8928d31e617a186b8f6a51787e0c..bf7ed73ff01b78db659cb25d71297523e73c28d8 100644 (file)
 //
 //===----------------------------------------------------------------------===//
 
+#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;