about summary refs log tree commit diff stats
path: root/test/ir/reduce_graph.py
diff options
context:
space:
mode:
authorFabrice Desclaux <fabrice.desclaux@cea.fr>2020-08-26 06:57:39 +0200
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2020-08-31 07:50:01 +0200
commit6f5cb3bef180400001541f56f704f77da0d73429 (patch)
treeb26d1cfdd80fae8a7a51fd7468db09acd5cf3414 /test/ir/reduce_graph.py
parent80e40a3d2ca735db955807ad0605b43ca22e4e35 (diff)
downloadmiasm-6f5cb3bef180400001541f56f704f77da0d73429.tar.gz
miasm-6f5cb3bef180400001541f56f704f77da0d73429.zip
IRBlock take loc_db
Diffstat (limited to 'test/ir/reduce_graph.py')
-rw-r--r--test/ir/reduce_graph.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ir/reduce_graph.py b/test/ir/reduce_graph.py
index 8835b4aa..73af4860 100644
--- a/test/ir/reduce_graph.py
+++ b/test/ir/reduce_graph.py
@@ -95,7 +95,7 @@ def gen_irblock(label, exprs_list):
         else:
             irs.append(AssignBlock(exprs))
 
-    irbl = IRBlock(label, irs)
+    irbl = IRBlock(loc_db, label, irs)
     return irbl