power_insn: remove redundant logs
authorDmitry Selyutin <ghostmansd@gmail.com>
Wed, 10 May 2023 17:17:58 +0000 (17:17 +0000)
committerDmitry Selyutin <ghostmansd@gmail.com>
Wed, 10 May 2023 17:17:58 +0000 (17:17 +0000)
src/openpower/decoder/power_insn.py

index 9005841e34c42ff5537f3f79bde54758b53fb865..b9d92508a7654fd563e42c5b0392986b89002902 100644 (file)
@@ -1113,15 +1113,11 @@ class XOStaticOperand(SpanStaticOperand):
         span = dict(zip(bits, range(len(bits))))
         span_rev = {value:key for (key, value) in span.items()}
 
-        print(record)
         # This part is tricky: we cannot use record.operands,
         # as this code is called by record.static_operands method.
         for (cls, kwargs) in record.mdwn.operands:
             operand = cls(record=record, **kwargs)
-            print(operand)
-            print(operand.span)
             for idx in operand.span:
-                print(idx)
                 rev = span.pop(idx, None)
                 if rev is not None:
                     span_rev.pop(rev, None)