about summary refs log tree commit diff stats
path: root/miasm2/analysis/depgraph.py
diff options
context:
space:
mode:
authorFabrice Desclaux <fabrice.desclaux@cea.fr>2018-07-09 14:20:28 +0200
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2018-07-10 14:57:24 +0200
commitf08ef523e0a30f89c5e05c894541d180e871fd1c (patch)
tree00f29558bdcee14fa475ecf17d7badd45f029de4 /miasm2/analysis/depgraph.py
parent7479f169ac9ae1546e4f77f581563e12a1690336 (diff)
downloadmiasm-f08ef523e0a30f89c5e05c894541d180e871fd1c.tar.gz
miasm-f08ef523e0a30f89c5e05c894541d180e871fd1c.zip
IR: rename DiGraphIR=>IRCFG
Diffstat (limited to 'miasm2/analysis/depgraph.py')
-rw-r--r--miasm2/analysis/depgraph.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/miasm2/analysis/depgraph.py b/miasm2/analysis/depgraph.py
index 93b3edb5..a5f3f0fd 100644
--- a/miasm2/analysis/depgraph.py
+++ b/miasm2/analysis/depgraph.py
@@ -452,7 +452,7 @@ class DependencyGraph(object):
                  follow_call=True):
         """Create a DependencyGraph linked to @ircfg
 
-        @ircfg: DiGraphIR instance
+        @ircfg: IRCFG instance
         @implicit: (optional) Track IRDst for each block in the resulting path
 
         Following arguments define filters used to generate dependencies
@@ -590,7 +590,7 @@ class DependencyGraph(object):
 
     def get(self, loc_key, elements, line_nb, heads):
         """Compute the dependencies of @elements at line number @line_nb in
-        the block named @loc_key in the current DiGraphIR, before the execution of
+        the block named @loc_key in the current IRCFG, before the execution of
         this line. Dependency check stop if one of @heads is reached
         @loc_key: LocKey instance
         @element: set of Expr instances