aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorAldy Hernandez <aldyh@redhat.com>2017-02-24 11:02:16 +0000
committerAldy Hernandez <aldyh@gcc.gnu.org>2017-02-24 11:02:16 +0000
commit70e1d145c876a7880a03cd1f1777c0d73f0ba1f1 (patch)
tree0df8f3a06e9dd2613703fd367ff7a64bcae26fba /gcc
parent830815b9ae9bdfc4be1b944c24d5d9c209ed0741 (diff)
downloadgcc-70e1d145c876a7880a03cd1f1777c0d73f0ba1f1.zip
gcc-70e1d145c876a7880a03cd1f1777c0d73f0ba1f1.tar.gz
gcc-70e1d145c876a7880a03cd1f1777c0d73f0ba1f1.tar.bz2
tree-ssa-loop-niter.c (number_of_iterations_exit): Update function comment to reflect reality.
* tree-ssa-loop-niter.c (number_of_iterations_exit): Update function comment to reflect reality. (loop_exits_before_overflow): Fix typo in function description. From-SVN: r245709
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/tree-ssa-loop-niter.c6
2 files changed, 9 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index f90686c..66535bf 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2017-02-24 Aldy Hernandez <aldyh@redhat.com>
+
+ * tree-ssa-loop-niter.c (number_of_iterations_exit): Update
+ function comment to reflect reality.
+ (loop_exits_before_overflow): Fix typo in function description.
+
2017-02-24 Richard Biener <rguenther@suse.de>
PR tree-optimization/79389
diff --git a/gcc/tree-ssa-loop-niter.c b/gcc/tree-ssa-loop-niter.c
index efcf3ed..269a2ba 100644
--- a/gcc/tree-ssa-loop-niter.c
+++ b/gcc/tree-ssa-loop-niter.c
@@ -2345,8 +2345,8 @@ number_of_iterations_exit_assumptions (struct loop *loop, edge exit,
return (!integer_zerop (niter->assumptions));
}
-/* Like number_of_iterations_exit, but return TRUE only if the niter
- information holds unconditionally. */
+/* Like number_of_iterations_exit_assumptions, but return TRUE only if
+ the niter information holds unconditionally. */
bool
number_of_iterations_exit (struct loop *loop, edge exit,
@@ -4194,7 +4194,7 @@ nowrap_type_p (tree type)
}
/* Return true if we can prove LOOP is exited before evolution of induction
- variabled {BASE, STEP} overflows with respect to its type bound. */
+ variable {BASE, STEP} overflows with respect to its type bound. */
static bool
loop_exits_before_overflow (tree base, tree step,