diff options
| author | Ajax <commial@gmail.com> | 2018-06-21 17:33:47 +0200 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2018-06-21 17:33:47 +0200 |
| commit | b8d5b255bad4b03c57356c9af474e6d8a12105db (patch) | |
| tree | 1fdea855e3bd266343e4d330af5ac686d53fc240 /example/expression | |
| parent | 98a60ebb7366cda9774fc0511185602cada1833b (diff) | |
| download | miasm-b8d5b255bad4b03c57356c9af474e6d8a12105db.tar.gz miasm-b8d5b255bad4b03c57356c9af474e6d8a12105db.zip | |
Code cleaning: remove useless / commented code
Diffstat (limited to 'example/expression')
| -rw-r--r-- | example/expression/simplification_tools.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/example/expression/simplification_tools.py b/example/expression/simplification_tools.py index 7c15b3e7..cb062fb3 100644 --- a/example/expression/simplification_tools.py +++ b/example/expression/simplification_tools.py @@ -32,7 +32,6 @@ x = ExprMem(a + b + ExprInt(0x42, 32), 32) def replace_expr(e): - # print 'visit', e dct = {c + ExprInt(0x42, 32): d, a + b: c, } if e in dct: |