diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2015-09-23 10:32:43 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2015-10-05 21:56:59 +0200 |
| commit | 46870df4e2d16501de84dc580c019f0941538899 (patch) | |
| tree | 726e3416e2e27f526ee57bde1db99d08d92b94bf | |
| parent | e854bcd5aaea1b931ccf46321b67181bcaa1e384 (diff) | |
| download | miasm-46870df4e2d16501de84dc580c019f0941538899.tar.gz miasm-46870df4e2d16501de84dc580c019f0941538899.zip | |
Depgraph: fix name
Diffstat (limited to '')
| -rw-r--r-- | miasm2/analysis/depgraph.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/miasm2/analysis/depgraph.py b/miasm2/analysis/depgraph.py index 7db9d8bf..838183bf 100644 --- a/miasm2/analysis/depgraph.py +++ b/miasm2/analysis/depgraph.py @@ -712,6 +712,7 @@ class DependencyGraph(object): self._cb_follow.append(lambda exprs: self._follow_exprs(exprs, follow_mem, follow_call)) + self._cb_follow.append(self._follow_nolabel) @property def step_counter(self): @@ -784,7 +785,7 @@ class DependencyGraph(object): return follow, nofollow @staticmethod - def _follow_label(exprs): + def _follow_nolabel(exprs): """Do not follow labels""" follow = set() for expr in exprs: |