about summary refs log tree commit diff stats
path: root/test/expression/simplifications.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/expression/simplifications.py')
-rw-r--r--test/expression/simplifications.py11
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
+        ),
+    ),
+
 
 
 ]