diff options
| author | Tim Blazytko <tim.blazytko@rub.de> | 2015-05-10 01:21:49 +0200 |
|---|---|---|
| committer | Tim Blazytko <tim.blazytko@rub.de> | 2015-06-02 14:56:08 +0200 |
| commit | 7912f1870e2aa87753d1c8537e03826f82801166 (patch) | |
| tree | 0cf4bd1124400eb743287cc772cddef31b1c7bde /miasm2/core/graph.py | |
| parent | 9dd0d7c43f9079fddda74d58c5cc9caca26479fe (diff) | |
| download | miasm-7912f1870e2aa87753d1c8537e03826f82801166.tar.gz miasm-7912f1870e2aa87753d1c8537e03826f82801166.zip | |
graph.py: replaced line for readability
Diffstat (limited to 'miasm2/core/graph.py')
| -rw-r--r-- | miasm2/core/graph.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/core/graph.py b/miasm2/core/graph.py index 0d129b3d..cd4da705 100644 --- a/miasm2/core/graph.py +++ b/miasm2/core/graph.py @@ -306,7 +306,7 @@ shape = "box" dominators = self.compute_dominators(head) idoms = {} - for n in dominators.keys(): + for n in dominators: for p in self.reachable_parents(n): if p in dominators[n] and n != p: idoms[n] = p |