diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-02-13 14:24:05 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-02-13 18:42:51 +0100 |
| commit | 6702a6149c57c54bcece3fb1cd00b8c09af6e74a (patch) | |
| tree | dc7e4df80fe9ea47ceb0bbecbe964f0fa93262ba /test/expression/simplifications.py | |
| parent | 839b17e1f1753fb1c99506c5810b62afc95bc635 (diff) | |
| download | miasm-6702a6149c57c54bcece3fb1cd00b8c09af6e74a.tar.gz miasm-6702a6149c57c54bcece3fb1cd00b8c09af6e74a.zip | |
X86: remove c_rez/rcl_rez/rcr_rez special operator
Diffstat (limited to 'test/expression/simplifications.py')
| -rw-r--r-- | test/expression/simplifications.py | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/test/expression/simplifications.py b/test/expression/simplifications.py index 1e8e73ba..8923cb3e 100644 --- a/test/expression/simplifications.py +++ b/test/expression/simplifications.py @@ -297,18 +297,6 @@ to_test = [(ExprInt(1, 32) - ExprInt(1, 32), ExprInt(0, 32)), (expr_cmps(ExprInt(-10, 32), ExprInt(-5, 32)), ExprInt(0, 1)), - (ExprOp("<<<c_rez", i1, i0, i0), - i1), - (ExprOp("<<<c_rez", i1, i1, i0), - ExprInt(2, 32)), - (ExprOp("<<<c_rez", i1, i1, i1), - ExprInt(3, 32)), - (ExprOp(">>>c_rez", icustom, i0, i0), - icustom), - (ExprOp(">>>c_rez", icustom, i1, i0), - ExprInt(0x91A2B3C, 32)), - (ExprOp(">>>c_rez", icustom, i1, i1), - ExprInt(0x891A2B3C, 32)), (ExprOp("idiv", ExprInt(0x0123, 16), ExprInt(0xfffb, 16))[:8], ExprInt(0xc6, 8)), (ExprOp("imod", ExprInt(0x0123, 16), ExprInt(0xfffb, 16))[:8], |