Commit b760c4b1 by Michael Hayes Committed by Michael Hayes

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
parent 0de2d85c
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,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment