diff options
| author | Camille Mougey <camille.mougey@cea.fr> | 2015-12-04 15:44:57 +0100 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2015-12-07 11:10:53 +0100 |
| commit | 0c5ca0a1784aac2b25cf7d9a263849020ebb94b5 (patch) | |
| tree | 5aa0285a56f78b7bed4441cedcfd8079ae136814 /example/ida/graph_ir.py | |
| parent | 126e77becb6e82850c831bdfeca10aadca6162a3 (diff) | |
| download | miasm-0c5ca0a1784aac2b25cf7d9a263849020ebb94b5.tar.gz miasm-0c5ca0a1784aac2b25cf7d9a263849020ebb94b5.zip | |
IR: use expr_is_label instead of ExprIsLabel
Diffstat (limited to 'example/ida/graph_ir.py')
| -rw-r--r-- | example/ida/graph_ir.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/ida/graph_ir.py b/example/ida/graph_ir.py index c3d88c36..ba5b29c4 100644 --- a/example/ida/graph_ir.py +++ b/example/ida/graph_ir.py @@ -56,7 +56,7 @@ class GraphMiasmIR(GraphViewer): continue dst = ir_arch.dst_trackback(irbloc) for d in dst: - if not self.ir_arch.ExprIsLabel(d): + if not expr_is_label(d): continue d = d.name |