about summary refs log tree commit diff stats
path: root/miasm2/core/cpu.py
diff options
context:
space:
mode:
Diffstat (limited to 'miasm2/core/cpu.py')
-rw-r--r--miasm2/core/cpu.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/miasm2/core/cpu.py b/miasm2/core/cpu.py
index c230775f..c01759f4 100644
--- a/miasm2/core/cpu.py
+++ b/miasm2/core/cpu.py
@@ -952,8 +952,6 @@ class instruction(object):
         o = "%-10s " % self.name
         args = []
         args_str = self.args_str
-        if args_str is None:
-            args_str = [lambda x:str(x) for i in xrange(len(self.args))]
         for arg, arg_str in zip(self.args, args_str):
             if not isinstance(arg, Expr):
                 raise ValueError('zarb arg type')