diff options
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/tree-ssa-loop-ivcanon.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index cb8b3ac..1a4c157 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2016-05-13 Kyrylo Tkachov <kyrylo.tkachov@arm.com> + * tree-ssa-loop-ivanon.c (try_unroll_loop_completely): Typo fix in + comment. + +2016-05-13 Kyrylo Tkachov <kyrylo.tkachov@arm.com> + * tree-ssa-loop-ivcanon.c (try_unroll_loop_completely): Change --param max-completely-peeled-times to --param max-completely-peel-times in dump file printing. diff --git a/gcc/tree-ssa-loop-ivcanon.c b/gcc/tree-ssa-loop-ivcanon.c index 9d92276..e8f6795 100644 --- a/gcc/tree-ssa-loop-ivcanon.c +++ b/gcc/tree-ssa-loop-ivcanon.c @@ -807,7 +807,7 @@ try_unroll_loop_completely (struct loop *loop, loop->num); return false; } - /* Complette unrolling is major win when control flow is removed and + /* Complete unrolling is a major win when control flow is removed and one big basic block is created. If the loop contains control flow the optimization may still be a win because of eliminating the loop overhead but it also may blow the branch predictor tables. |