about summary refs log tree commit diff stats
path: root/test/expression/simplifications.py
diff options
context:
space:
mode:
authorCamille Mougey <commial@gmail.com>2018-02-14 12:13:24 +0100
committerGitHub <noreply@github.com>2018-02-14 12:13:24 +0100
commitdcfadb31685d428618b88f19fcc96dd70cecfc8f (patch)
tree038c6c2f545d5a77ecb6c68f030107f09d32450f /test/expression/simplifications.py
parentb0e9f5da9b4546a22169882e656bf2776eab9754 (diff)
parent6702a6149c57c54bcece3fb1cd00b8c09af6e74a (diff)
downloadfocaccia-miasm-dcfadb31685d428618b88f19fcc96dd70cecfc8f.tar.gz
focaccia-miasm-dcfadb31685d428618b88f19fcc96dd70cecfc8f.zip
Merge pull request #678 from serpilliere/x86_fix_rcl
X86 fix rcl
Diffstat (limited to 'test/expression/simplifications.py')
-rw-r--r--test/expression/simplifications.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/expression/simplifications.py b/test/expression/simplifications.py
index b4f5b783..e4c3f2e9 100644
--- a/test/expression/simplifications.py
+++ b/test/expression/simplifications.py
@@ -301,18 +301,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],