aboutsummaryrefslogtreecommitdiff
path: root/gcc/loop-unroll.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/loop-unroll.c')
-rw-r--r--gcc/loop-unroll.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/loop-unroll.c b/gcc/loop-unroll.c
index 6f945a2..55899a9 100644
--- a/gcc/loop-unroll.c
+++ b/gcc/loop-unroll.c
@@ -346,7 +346,7 @@ decide_peel_completely (loops, loop, flags)
return;
}
- /* npeel = number of iterations to peel. */
+ /* npeel = number of iterations to peel. */
npeel = PARAM_VALUE (PARAM_MAX_COMPLETELY_PEELED_INSNS) / loop->ninsns;
if (npeel > (unsigned) PARAM_VALUE (PARAM_MAX_COMPLETELY_PEEL_TIMES))
npeel = PARAM_VALUE (PARAM_MAX_COMPLETELY_PEEL_TIMES);
@@ -974,7 +974,7 @@ decide_peel_simple (loops, loop, flags)
if (rtl_dump_file)
fprintf (rtl_dump_file, ";; Considering simply peeling loop\n");
- /* npeel = number of iterations to peel. */
+ /* npeel = number of iterations to peel. */
npeel = PARAM_VALUE (PARAM_MAX_PEELED_INSNS) / loop->ninsns;
if (npeel > (unsigned) PARAM_VALUE (PARAM_MAX_PEEL_TIMES))
npeel = PARAM_VALUE (PARAM_MAX_PEEL_TIMES);