about summary refs log tree commit diff stats
path: root/miasm2/arch/x86/ira.py
diff options
context:
space:
mode:
Diffstat (limited to 'miasm2/arch/x86/ira.py')
-rw-r--r--miasm2/arch/x86/ira.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/miasm2/arch/x86/ira.py b/miasm2/arch/x86/ira.py
index d0bebfb6..be10213e 100644
--- a/miasm2/arch/x86/ira.py
+++ b/miasm2/arch/x86/ira.py
@@ -8,8 +8,8 @@ from miasm2.arch.x86.sem import ir_x86_16, ir_x86_32, ir_x86_64
 
 class ir_a_x86_16(ir_x86_16, ira):
 
-    def __init__(self, symbol_pool=None):
-        ir_x86_16.__init__(self, symbol_pool)
+    def __init__(self, loc_db=None):
+        ir_x86_16.__init__(self, loc_db)
         self.ret_reg = self.arch.regs.AX
 
     def get_out_regs(self, _):
@@ -17,8 +17,8 @@ class ir_a_x86_16(ir_x86_16, ira):
 
 class ir_a_x86_32(ir_x86_32, ir_a_x86_16):
 
-    def __init__(self, symbol_pool=None):
-        ir_x86_32.__init__(self, symbol_pool)
+    def __init__(self, loc_db=None):
+        ir_x86_32.__init__(self, loc_db)
         self.ret_reg = self.arch.regs.EAX
 
     def sizeof_char(self):
@@ -39,8 +39,8 @@ class ir_a_x86_32(ir_x86_32, ir_a_x86_16):
 
 class ir_a_x86_64(ir_x86_64, ir_a_x86_16):
 
-    def __init__(self, symbol_pool=None):
-        ir_x86_64.__init__(self, symbol_pool)
+    def __init__(self, loc_db=None):
+        ir_x86_64.__init__(self, loc_db)
         self.ret_reg = self.arch.regs.RAX
 
     def call_effects(self, ad, instr):