From 2420df074cd2f3bb8b1e343a5bce6b83fffa9d80 Mon Sep 17 00:00:00 2001 From: Ajax Date: Thu, 15 Feb 2018 14:16:08 +0100 Subject: Remove the default size of ExprMem expressions --- example/expression/expr_grapher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'example/expression/expr_grapher.py') diff --git a/example/expression/expr_grapher.py b/example/expression/expr_grapher.py index 9bf6cd84..e0562852 100644 --- a/example/expression/expr_grapher.py +++ b/example/expression/expr_grapher.py @@ -6,7 +6,7 @@ a = ExprId("A", 32) b = ExprId("B", 32) c = ExprId("C", 32) d = ExprId("D", 32) -m = ExprMem(a + b + c + a) +m = ExprMem(a + b + c + a, 32) e1 = ExprCompose(a + b - (c * a) / m | b, a + m) e2 = ExprInt(15, 64) -- cgit 1.4.1