Commit 6eb3cadb by Martin Liska Committed by Martin Liska

Make debug(edge) more verbose.

2019-06-03  Martin Liska  <mliska@suse.cz>

	* cfg.c (debug): Use TDF_DETAILS for debug and
	print edge info only once.

From-SVN: r271854
parent 467e9f38
2019-06-03 Martin Liska <mliska@suse.cz>
* cfg.c (debug): Use TDF_DETAILS for debug and
print edge info only once.
2019-06-02 Thomas Koenig <tkoenig@gcc.gnu.org>
PR fortran/90539
......
......@@ -546,9 +546,10 @@ dump_edge_info (FILE *file, edge e, dump_flags_t flags, int do_succ)
DEBUG_FUNCTION void
debug (edge_def &ref)
{
/* FIXME (crowl): Is this desireable? */
dump_edge_info (stderr, &ref, TDF_NONE, false);
dump_edge_info (stderr, &ref, TDF_NONE, true);
fprintf (stderr, "<edge (%d -> %d)>\n",
ref.src->index, ref.dest->index);
dump_edge_info (stderr, &ref, TDF_DETAILS, false);
fprintf (stderr, "\n");
}
DEBUG_FUNCTION void
......
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