summaryrefslogtreecommitdiff
path: root/gcc/unroll.c
diff options
context:
space:
mode:
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>2001-12-30 15:58:42 +0000
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>2001-12-30 15:58:42 +0000
commit45a72df864d777efc675d3d787da54afff890a44 (patch)
tree97da6cf8cae781e4db98572610e82edf67f93bdc /gcc/unroll.c
parent8963581acd743a88191f9c5438989979c6aa53d2 (diff)
downloadgcc-45a72df864d777efc675d3d787da54afff890a44.tar.gz
* unroll.c: Move include files above first use of `const'.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@48400 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/unroll.c')
-rw-r--r--gcc/unroll.c34
1 files changed, 17 insertions, 17 deletions
diff --git a/gcc/unroll.c b/gcc/unroll.c
index 5154b29d65d..5f1560df201 100644
--- a/gcc/unroll.c
+++ b/gcc/unroll.c
@@ -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. */