diff options
Diffstat (limited to 'gcc/tree-cfg.c')
-rw-r--r-- | gcc/tree-cfg.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/tree-cfg.c b/gcc/tree-cfg.c index 106c58fd46d..5632a8930bc 100644 --- a/gcc/tree-cfg.c +++ b/gcc/tree-cfg.c @@ -221,6 +221,11 @@ execute_build_cfg (void) build_gimple_cfg (body); gimple_set_body (current_function_decl, NULL); + if (dump_file && (dump_flags & TDF_DETAILS)) + { + fprintf (dump_file, "Scope blocks:\n"); + dump_scope_blocks (dump_file, dump_flags); + } return 0; } |