From 588fd3fca50520e34787c179c9bb130b5ddad9b8 Mon Sep 17 00:00:00 2001 From: Fish Date: Thu, 12 Dec 2024 09:49:58 -0700 Subject: [PATCH] Add the missing size attribute to V256. (#442) --- pyvex/const.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pyvex/const.py b/pyvex/const.py index f9802c74..123ad6bc 100644 --- a/pyvex/const.py +++ b/pyvex/const.py @@ -324,6 +324,7 @@ class V256(IRConst): tag = "Ico_V256" op_format = "V256" c_constructor = pvc.IRConst_V256 + size = 256 def __init__(self, value): self._value = value