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
This commit is contained in:
Duncan Sands 2008-05-16 09:30:00 +00:00
parent 419cafb9fb
commit 1a2d667d6f

View File

@ -12,7 +12,6 @@
// counts of loops easily.
//===----------------------------------------------------------------------===//
#include <climits>
#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 <climits>
using namespace llvm;