From: Duncan Sands Date: Fri, 16 May 2008 09:30:00 +0000 (+0000) Subject: Bill pointed out that system headers should be X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=1a2d667d6f0f57d252ddde093e3fc06ec2704829;p=oota-llvm.git Bill pointed out that system headers should be included after local headers. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51187 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/LoopUnroll.cpp b/lib/Transforms/Scalar/LoopUnroll.cpp index aa1c7e73636..75ad96e49a2 100644 --- a/lib/Transforms/Scalar/LoopUnroll.cpp +++ b/lib/Transforms/Scalar/LoopUnroll.cpp @@ -12,7 +12,6 @@ // counts of loops easily. //===----------------------------------------------------------------------===// -#include #define DEBUG_TYPE "loop-unroll" #include "llvm/IntrinsicInst.h" #include "llvm/Transforms/Scalar.h" @@ -22,6 +21,7 @@ #include "llvm/Support/CommandLine.h" #include "llvm/Support/Debug.h" #include "llvm/Transforms/Utils/UnrollLoop.h" +#include using namespace llvm;