about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorserpilliere <devnull@localhost>2011-09-28 09:16:25 +0200
committerserpilliere <devnull@localhost>2011-09-28 09:16:25 +0200
commita5a1553ee09c0bd67cd97315921ff824525eee22 (patch)
tree97164645e1dfac73eacaceec05bbbe3ca46463c8
parentd0b2e377545dba7e4dc53349ef47e71e75a199e7 (diff)
downloadmiasm-a5a1553ee09c0bd67cd97315921ff824525eee22.tar.gz
miasm-a5a1553ee09c0bd67cd97315921ff824525eee22.zip
rem dbg print
-rw-r--r--miasm/arch/ia32_arch.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/miasm/arch/ia32_arch.py b/miasm/arch/ia32_arch.py
index c1dce818..d68ca6db 100644
--- a/miasm/arch/ia32_arch.py
+++ b/miasm/arch/ia32_arch.py
@@ -1367,11 +1367,6 @@ class x86_mn:
             return []
         a = self.arg[0]
         if is_imm(a) and not x86_afs.symb in a:
-            print hex(self.offset), hex(self.l+a[x86_afs.imm])
-            print hex(self.offset+self.l+a[x86_afs.imm])
-            print self.size_ad
-            print tab_max_uint[self.size_ad]
-            print hex((self.offset+self.l+a[x86_afs.imm])&tab_max_uint[self.size_ad])
             dst = (self.offset+self.l+a[x86_afs.imm])&tab_max_uint[self.size_ad]
             out = [dst]
         else: