Skip to content

Commit

Permalink
* tree-ssa-loop-niter.c (scev_probably_wraps_p): Fix typo in argumen…
Browse files Browse the repository at this point in the history
…t name.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@115233 138bc75d-0d04-0410-961f-82ee72b054a4
  • Loading branch information
rakdver committed Jul 6, 2006
1 parent 185e0a1 commit 499c8b1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions gcc/ChangeLog
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions gcc/tree-ssa-loop-niter.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 499c8b1

Please sign in to comment.