From: rakdver Date: Thu, 6 Jul 2006 22:41:16 +0000 (+0000) Subject: * tree-ssa-loop-niter.c (scev_probably_wraps_p): Fix typo in argument name. X-Git-Tag: upstream/4.9.2~53827 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=499c8b1ed3d898eff2c9b74468aad9b8fdee184f;p=platform%2Fupstream%2Flinaro-gcc.git * tree-ssa-loop-niter.c (scev_probably_wraps_p): Fix typo in argument name. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@115233 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c296175..e5eb94c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2006-07-06 Zdenek Dvorak + + * tree-ssa-loop-niter.c (scev_probably_wraps_p): Fix typo in argument name. + 2006-07-06 David Edelsohn PR target/28150 diff --git a/gcc/tree-ssa-loop-niter.c b/gcc/tree-ssa-loop-niter.c index 9428dd6..e079dda 100644 --- a/gcc/tree-ssa-loop-niter.c +++ b/gcc/tree-ssa-loop-niter.c @@ -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