diff options
| -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: |