From 388247791d823795569caa39700fd497720117e2 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Fri, 30 Nov 2012 16:56:25 +0900 Subject: [PATCH] Re-enable the dags specific flow graph dump. --- tools/qfcc/source/flow.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/qfcc/source/flow.c b/tools/qfcc/source/flow.c index 6bbd44705..ed362a641 100644 --- a/tools/qfcc/source/flow.c +++ b/tools/qfcc/source/flow.c @@ -568,8 +568,8 @@ flow_build_dags (flowgraph_t *graph) node = graph->nodes[i]; node->dag = dag_create (node); } - //if (options.block_dot.dags) - // dump_dot ("dags", graph, dump_dot_flow_dags); + if (options.block_dot.dags) + dump_dot ("dags", graph, dump_dot_flow_dags); } void