diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2020-12-28 22:37:12 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-28 22:37:12 +0100 |
| commit | 6cf64f7c61849d7acc06a5e451d0b2b43d9f98ba (patch) | |
| tree | 04c87810ee20653215d523468eafe818263e24c0 /test/expression/simplifications.py | |
| parent | de3d1ed055e39525803cba0c2ffdb3f65f11607e (diff) | |
| parent | 6f3a19f40c9d941666cdba8742d4f431579d42c9 (diff) | |
| download | miasm-6cf64f7c61849d7acc06a5e451d0b2b43d9f98ba.tar.gz miasm-6cf64f7c61849d7acc06a5e451d0b2b43d9f98ba.zip | |
Merge pull request #1340 from serpilliere/add_simplification_flag_sub_cf
Add simplification
Diffstat (limited to 'test/expression/simplifications.py')
| -rw-r--r-- | test/expression/simplifications.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/expression/simplifications.py b/test/expression/simplifications.py index c75dc0d3..96ab8a59 100644 --- a/test/expression/simplifications.py +++ b/test/expression/simplifications.py @@ -807,6 +807,17 @@ to_test = [ ), ), + ( + ExprCond( + ExprOp("FLAG_SUB_CF", a, b), + c, d + ), + ExprCond( + ExprOp("<u", a, b), + c, d + ), + ), + ] |