diff options
| author | Camille Mougey <commial@gmail.com> | 2018-07-10 16:25:54 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-10 16:25:54 +0200 |
| commit | a5221c1b926af7716860fd27039528cfb54d6095 (patch) | |
| tree | 00f29558bdcee14fa475ecf17d7badd45f029de4 /miasm2/analysis/depgraph.py | |
| parent | 17d48de1951c81fc8b5b4184713a971537747227 (diff) | |
| parent | f08ef523e0a30f89c5e05c894541d180e871fd1c (diff) | |
| download | miasm-a5221c1b926af7716860fd27039528cfb54d6095.tar.gz miasm-a5221c1b926af7716860fd27039528cfb54d6095.zip | |
Merge pull request #793 from serpilliere/clean_rename_ircfg
Clean rename ircfg
Diffstat (limited to 'miasm2/analysis/depgraph.py')
| -rw-r--r-- | miasm2/analysis/depgraph.py | 4 |
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 |