flow.c (flow_loops_dump): Add missing argument when calling flow_loop_nested_p.
* flow.c (flow_loops_dump): Add missing argument when calling flow_loop_nested_p. From-SVN: r30773
This commit is contained in:
parent
0de2d85cac
commit
b760c4b147
@ -1,3 +1,8 @@
|
||||
1999-12-05 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
|
||||
|
||||
* flow.c (flow_loops_dump): Add missing argument when calling
|
||||
flow_loop_nested_p.
|
||||
|
||||
1999-12-04 Geoffrey Keating <geoffk@cygnus.com>
|
||||
Greg McGary <gkm@gnu.org>
|
||||
|
||||
|
@ -6459,7 +6459,8 @@ flow_loops_dump (loops, file, verbose)
|
||||
/* If the union of LOOP and OLOOP is different than
|
||||
the larger of LOOP and OLOOP then LOOP and OLOOP
|
||||
must be disjoint. */
|
||||
disjoint = ! flow_loop_nested_p (smaller ? loop : oloop);
|
||||
disjoint = ! flow_loop_nested_p (smaller ? loop : oloop,
|
||||
smaller ? oloop : loop);
|
||||
fprintf (file, ";; loop header %d shared by loops %d, %d"
|
||||
" %s\n",
|
||||
loop->header->index, i, j,
|
||||
|
Loading…
Reference in New Issue
Block a user