]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
tree-ssa-loop-niter.c (scev_probably_wraps_p): Fix typo in argument name.
authorZdenek Dvorak <dvorakz@suse.cz>
Thu, 6 Jul 2006 22:41:16 +0000 (00:41 +0200)
committerZdenek Dvorak <rakdver@gcc.gnu.org>
Thu, 6 Jul 2006 22:41:16 +0000 (22:41 +0000)
* tree-ssa-loop-niter.c (scev_probably_wraps_p): Fix typo in argument name.

From-SVN: r115233

gcc/ChangeLog
gcc/tree-ssa-loop-niter.c

index c29617590f2801248ae3599db616820c6646b7ce..e5eb94cd1f01c8f136b7d17be0a0e985cf67c489 100644 (file)
@@ -1,3 +1,7 @@
+2006-07-06  Zdenek Dvorak <dvorakz@suse.cz>
+
+       * tree-ssa-loop-niter.c (scev_probably_wraps_p): Fix typo in argument name.
+
 2006-07-06  David Edelsohn  <edelsohn@gnu.org>
 
        PR target/28150
index 9428dd6a3aabffc18367f2bc4dcf079afc4674f0..e079dda2068a08ca2cf66362756d0d77eee6bb22 100644 (file)
@@ -1964,7 +1964,7 @@ nowrap_type_p (tree type)
 bool
 scev_probably_wraps_p (tree base, tree step, 
                       tree at_stmt, struct loop *loop,
-                      bool use_oveflow_semantics)
+                      bool use_overflow_semantics)
 {
   struct nb_iter_bound *bound;
   tree delta, step_abs;
@@ -1997,7 +1997,7 @@ scev_probably_wraps_p (tree base, tree step,
 
   /* If we can use the fact that signed and pointer arithmetics does not
      wrap, we are done.  */
-  if (use_oveflow_semantics && nowrap_type_p (type))
+  if (use_overflow_semantics && nowrap_type_p (type))
     return false;
 
   /* Otherwise, compute the number of iterations before we reach the