* cfgloop.c (flow_loop_nested_p): Fix comment.

From-SVN: r84896
This commit is contained in:
Sebastian Pop 2004-07-18 16:53:22 +02:00 committed by Sebastian Pop
parent 5e631ba3ec
commit 1ad03593bd
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2004-07-17 Sebastian Pop <pop@cri.ensmp.fr>
* cfgloop.c (flow_loop_nested_p): Fix comment.
2004-07-17 Jason Merrill <jason@redhat.com>
PR c++/16115

View File

@ -101,7 +101,8 @@ flow_loop_nested_p (const struct loop *outer, const struct loop *loop)
&& loop->pred[outer->depth] == outer;
}
/* Returns superloop of LOOP at given DEPTH. */
/* Returns the loop such that LOOP is nested DEPTH (indexed from zero)
loops within LOOP. */
struct loop *
superloop_at_depth (struct loop *loop, unsigned depth)