From 0c5ca0a1784aac2b25cf7d9a263849020ebb94b5 Mon Sep 17 00:00:00 2001 From: Camille Mougey Date: Fri, 4 Dec 2015 15:44:57 +0100 Subject: IR: use expr_is_label instead of ExprIsLabel --- example/ida/graph_ir.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'example/ida/graph_ir.py') 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 -- cgit 1.4.1