about summary refs log tree commit diff stats
path: root/example/expression/simplification_add.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fixed no-op in example/expression/simplification_addIvan “CLOVIS” Canet2022-03-151-8/+13
| | | | | | | | | | | | | | | Previously, the test would not do anything, as the simplification added in the test is already a part of the default enabled simplifications: ``` Without adding the simplification: a + a + a = a * 0x3 After adding the simplification: a + a + a = a * 0x3 ``` This also meant that editing the added simplification would have no effect (since the expression was already modified by the default simplifier, it would never match the custom one). This commit replaces `expr_simp` by a newly-created `simp` that doesn't have any simplifications enabled, so the one added by the test has an impact.
* Rename miasm2 to miasmFabrice Desclaux2019-03-051-3/+3
|
* Support python2/python3Fabrice Desclaux2019-03-051-6/+7
|
* Expression: no default size for ExprIdFabrice Desclaux2018-02-091-1/+1
|
* Remove PYTHONSTARTUP in end-user scriptsAjax2017-04-241-5/+0
|
* Expr: Remove exprint_fromFabrice Desclaux2016-12-231-2/+2
|
* Example: Add an example of a simplification registeringCamille Mougey2014-09-191-0/+51