From 0d78a865c6a9f93c9c1f2b30223c2e328d81e962 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Mon, 15 May 2023 11:08:23 +0900 Subject: [PATCH] [qfcc] Show flow vars and statements for reaching dot A bunch of nodes with a pile of numbers doesn't mean much without the context. --- tools/qfcc/source/dot_flow.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/qfcc/source/dot_flow.c b/tools/qfcc/source/dot_flow.c index 62b7fc836..34c32f77d 100644 --- a/tools/qfcc/source/dot_flow.c +++ b/tools/qfcc/source/dot_flow.c @@ -317,7 +317,8 @@ static flow_print_t live_print[] = { { 0 } }; static flow_print_t reaching_print[] = { - { print_flow_node_reaching, print_flow_edge}, + { print_flow_node_reaching, print_flow_edge, print_flow_vars}, + { print_flow_node_statements, print_flow_edge_statements}, { 0 } }; static flow_print_t statements_print[] = {