about summary refs log tree commit diff stats
path: root/example/expression
diff options
context:
space:
mode:
authorIvan “CLOVIS” Canet <ivan.canet@gmail.com>2022-03-16 09:28:33 +0100
committerIvan “CLOVIS” Canet <ivan.canet@gmail.com>2022-03-21 09:21:51 +0100
commit711752fc45027682e962853906a4b515e5f45849 (patch)
tree848849d98b4b512eb1795cb137fc1d0391fc38cc /example/expression
parent64f55d0c4f8f770e5b1d41ce59228ab2cba07f9a (diff)
downloadmiasm-711752fc45027682e962853906a4b515e5f45849.tar.gz
miasm-711752fc45027682e962853906a4b515e5f45849.zip
Fixed output file name in graph_dataflow
Diffstat (limited to 'example/expression')
-rw-r--r--example/expression/graph_dataflow.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/example/expression/graph_dataflow.py b/example/expression/graph_dataflow.py
index 0546fda3..dc09eae4 100644
--- a/example/expression/graph_dataflow.py
+++ b/example/expression/graph_dataflow.py
@@ -158,8 +158,10 @@ gen_block_data_flow_graph(lifter, ircfg, ad, block_flow_cb)
 print('*' * 40)
 print("""
  View with:
-dotty dataflow.dot
+dotty data.dot
+ or
+xdot data.dot
  or
  Generate ps with pdf:
-dot -Tps dataflow_xx.dot -o graph.ps
+dot -Tps data.dot -o graph.ps
 """)