about summary refs log tree commit diff stats
path: root/example/expression/graph_dataflow.py
diff options
context:
space:
mode:
authorCamille Mougey <commial@gmail.com>2018-10-21 11:53:46 +0200
committerGitHub <noreply@github.com>2018-10-21 11:53:46 +0200
commit794a2ef09a55eb040aff6a5408433c71ccb93729 (patch)
tree2c8cd3e06b7ad205d5fab18fc2b4a81dae722643 /example/expression/graph_dataflow.py
parent90593a668c64b396b0c8254a55878fb91925415d (diff)
parent9503c250c5524a6c388aba032be4e34517b358f9 (diff)
downloadmiasm-794a2ef09a55eb040aff6a5408433c71ccb93729.tar.gz
miasm-794a2ef09a55eb040aff6a5408433c71ccb93729.zip
Merge pull request #870 from serpilliere/expr_mem_ptr
Expression: replace arg by ptr in ExprMem
Diffstat (limited to 'example/expression/graph_dataflow.py')
-rw-r--r--example/expression/graph_dataflow.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/expression/graph_dataflow.py b/example/expression/graph_dataflow.py
index b30bd29f..0951cc1e 100644
--- a/example/expression/graph_dataflow.py
+++ b/example/expression/graph_dataflow.py
@@ -50,7 +50,7 @@ def intra_block_flow_symb(ir_arch, _, flow_graph, irblock, in_nodes, out_nodes):
             node_n_w = get_node_name(irblock.loc_key, 0, n)
             if not n == src:
                 continue
-            o_r = n.arg.get_r(mem_read=False, cst_read=True)
+            o_r = n.ptr.get_r(mem_read=False, cst_read=True)
             for i, n_r in enumerate(o_r):
                 if n_r in current_nodes:
                     node_n_r = current_nodes[n_r]