Skip to content
Snippets Groups Projects
Commit 499c8b1e authored by rakdver's avatar rakdver
Browse files

* 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
parent 185e0a11
No related branches found
No related tags found
No related merge requests found
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> 2006-07-06 David Edelsohn <edelsohn@gnu.org>
PR target/28150 PR target/28150
......
...@@ -1964,7 +1964,7 @@ nowrap_type_p (tree type) ...@@ -1964,7 +1964,7 @@ nowrap_type_p (tree type)
bool bool
scev_probably_wraps_p (tree base, tree step, scev_probably_wraps_p (tree base, tree step,
tree at_stmt, struct loop *loop, tree at_stmt, struct loop *loop,
bool use_oveflow_semantics) bool use_overflow_semantics)
{ {
struct nb_iter_bound *bound; struct nb_iter_bound *bound;
tree delta, step_abs; tree delta, step_abs;
...@@ -1997,7 +1997,7 @@ scev_probably_wraps_p (tree base, tree step, ...@@ -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 /* If we can use the fact that signed and pointer arithmetics does not
wrap, we are done. */ wrap, we are done. */
if (use_oveflow_semantics && nowrap_type_p (type)) if (use_overflow_semantics && nowrap_type_p (type))
return false; return false;
/* Otherwise, compute the number of iterations before we reach the /* Otherwise, compute the number of iterations before we reach the
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment