From 0056026fa2f07b49d54236148ad5c528b18b381f Mon Sep 17 00:00:00 2001 From: Ajax Date: Tue, 13 Feb 2018 14:39:53 +0100 Subject: Use 3 arguments to highlight the recent #677 patch --- test/expression/simplifications.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/expression/simplifications.py') diff --git a/test/expression/simplifications.py b/test/expression/simplifications.py index 77c7b78e..8799191b 100644 --- a/test/expression/simplifications.py +++ b/test/expression/simplifications.py @@ -196,9 +196,9 @@ to_test = [(ExprInt(1, 32) - ExprInt(1, 32), ExprInt(0, 32)), (ExprOp('*', a, b, c, ExprInt(0x12, 32))[0:17], ExprOp( '*', a[0:17], b[0:17], c[0:17], ExprInt(0x12, 17))), - (ExprOp('*', a, ExprInt(0x0, 32)), + (ExprOp('*', a, b, ExprInt(0x0, 32)), ExprInt(0x0, 32)), - (ExprOp('&', a, ExprInt(0x0, 32)), + (ExprOp('&', a, b, ExprInt(0x0, 32)), ExprInt(0x0, 32)), (ExprOp('*', a, ExprInt(0xffffffff, 32)), -a), -- cgit 1.4.1