mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 12:52:46 +00:00
Re-enable the flow graph dumping.
It's still in a bogus place, but it's necessary.
This commit is contained in:
parent
3c79f07705
commit
8817c4a1c2
1 changed files with 3 additions and 0 deletions
|
@ -646,6 +646,9 @@ emit_function (function_t *f, expr_t *e)
|
|||
flow_build_vars (f);
|
||||
f->graph = flow_build_graph (f->sblock);
|
||||
flow_data_flow (f);
|
||||
if (options.block_dot.flow)
|
||||
print_flowgraph (f->graph, nva ("%s.%s.%s.dot", GETSTR (pr.source_file),
|
||||
f->name, "flow"));
|
||||
emit_statements (f->sblock);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue