Bill pointed out that system headers should be

included after local headers.

llvm-svn: 51187
This commit is contained in:
Duncan Sands 2008-05-16 09:30:00 +00:00
parent a018f1f47e
commit e77eede842

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;