Browse Source

Merge branch 'master' of github.com:taddeus/peephole

Taddeus Kroes 14 năm trước cách đây
mục cha
commit
4099c995fa
1 tập tin đã thay đổi với 0 bổ sung1 xóa
  1. 0 1
      src/optimize/advanced.py

+ 0 - 1
src/optimize/advanced.py

@@ -177,7 +177,6 @@ def fold_constants(block):
             known.append((s[0], register[s[0]]))
         elif s.name == 'mult' and s[0]in register and s[1] in register:
             # Multiplication/division with constants
-            print s
             rs, rt = s
             a, b = register[rs], register[rt]