about summary refs log tree commit diff stats
path: root/example/expression/expr_reduce.py
diff options
context:
space:
mode:
Diffstat (limited to 'example/expression/expr_reduce.py')
-rw-r--r--example/expression/expr_reduce.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/expression/expr_reduce.py b/example/expression/expr_reduce.py
index bb94ceb9..7c6e0c4c 100644
--- a/example/expression/expr_reduce.py
+++ b/example/expression/expr_reduce.py
@@ -75,7 +75,7 @@ class StructLookup(ExprReducer):
 def test():
     struct_lookup = StructLookup()
 
-    ptr = ExprId('ECX')
+    ptr = ExprId('ECX', 32)
     int4 = ExprInt(4, 32)
     tests = [
         (ptr, StructLookup.FIELD_A_PTR),