From 275b8d25aacd639a0512f54e99f9fa247ecb8bb3 Mon Sep 17 00:00:00 2001 From: Fabrice Desclaux Date: Fri, 9 Feb 2018 18:13:24 +0100 Subject: Expression: no default size for ExprId --- example/expression/simplification_tools.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'example/expression/simplification_tools.py') diff --git a/example/expression/simplification_tools.py b/example/expression/simplification_tools.py index 258b5ce4..1fb95a80 100644 --- a/example/expression/simplification_tools.py +++ b/example/expression/simplification_tools.py @@ -7,11 +7,11 @@ Expression simplification demo. """ -a = ExprId('a') -b = ExprId('b') -c = ExprId('c') -d = ExprId('d') -e = ExprId('e') +a = ExprId('a', 32) +b = ExprId('b', 32) +c = ExprId('c', 32) +d = ExprId('d', 32) +e = ExprId('e', 32) m = ExprMem(a) s = a[:8] -- cgit 1.4.1