* unroll.c: Move include files above first use of `const'.
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>
Sun, 30 Dec 2001 15:58:42 +0000 (15:58 +0000)
committerKaveh Ghazi <ghazi@gcc.gnu.org>
Sun, 30 Dec 2001 15:58:42 +0000 (15:58 +0000)
From-SVN: r48400

gcc/ChangeLog
gcc/unroll.c

index 76c405a515888ac956f023274ec7a97c13195f8a..cdeaee04a62fe3632f4dfaa33314834f2648b069 100644 (file)
@@ -1,3 +1,7 @@
+2001-12-30  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+       * unroll.c: Move include files above first use of `const'.
+
 2001-12-30  Jakub Jelinek  <jakub@redhat.com>
 
        * cfgrtl.c (try_redirect_by_replacing_jump): Allow redirect_jump
index 5154b29d65dde15e5a058817d5522a8c4eb00a75..5f1560df2014de07a54fd39759df0e51ecf1f85b 100644 (file)
@@ -131,6 +131,23 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
    moving the insn back into the loop, or perhaps replicate the insn before
    the loop, one copy for each time the loop is unrolled.  */
 
+#include "config.h"
+#include "system.h"
+#include "rtl.h"
+#include "tm_p.h"
+#include "insn-config.h"
+#include "integrate.h"
+#include "regs.h"
+#include "recog.h"
+#include "flags.h"
+#include "function.h"
+#include "expr.h"
+#include "loop.h"
+#include "toplev.h"
+#include "hard-reg-set.h"
+#include "basic-block.h"
+#include "predict.h"
+
 /* The prime factors looked for when trying to unroll a loop by some
    number which is modulo the total number of iterations.  Just checking
    for these 4 prime factors will find at least one factor for 75% of
@@ -152,23 +169,6 @@ enum unroll_types
   UNROLL_NAIVE
 };
 
-#include "config.h"
-#include "system.h"
-#include "rtl.h"
-#include "tm_p.h"
-#include "insn-config.h"
-#include "integrate.h"
-#include "regs.h"
-#include "recog.h"
-#include "flags.h"
-#include "function.h"
-#include "expr.h"
-#include "loop.h"
-#include "toplev.h"
-#include "hard-reg-set.h"
-#include "basic-block.h"
-#include "predict.h"
-
 /* This controls which loops are unrolled, and by how much we unroll
    them.  */