Bill pointed out that system headers should be
authorDuncan Sands <baldrick@free.fr>
Fri, 16 May 2008 09:30:00 +0000 (09:30 +0000)
committerDuncan Sands <baldrick@free.fr>
Fri, 16 May 2008 09:30:00 +0000 (09:30 +0000)
included after local headers.

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

lib/Transforms/Scalar/LoopUnroll.cpp

index aa1c7e736362eeb964b66a28ce8ab2c6deb47a80..75ad96e49a2266546d0414ffd096ae9c3da27e2f 100644 (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;