aboutsummaryrefslogtreecommitdiff
path: root/gcc/cfg.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/cfg.c')
-rw-r--r--gcc/cfg.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/cfg.c b/gcc/cfg.c
index 94e68c8..983115e 100644
--- a/gcc/cfg.c
+++ b/gcc/cfg.c
@@ -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