diff options
Diffstat (limited to 'gcc/graph.c')
-rw-r--r-- | gcc/graph.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/graph.c b/gcc/graph.c index 6c405d8..545de44 100644 --- a/gcc/graph.c +++ b/gcc/graph.c @@ -255,7 +255,7 @@ draw_cfg_edges (pretty_printer *pp, struct function *fun) { basic_block bb; mark_dfs_back_edges (); - FOR_ALL_BB (bb) + FOR_ALL_BB_FN (bb, cfun) draw_cfg_node_succ_edges (pp, fun->funcdef_no, bb); /* Add an invisible edge from ENTRY to EXIT, to improve the graph layout. */ |