From a7e33cfb272906322f0d677aeb7c6bff4838afeb Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Sun, 28 Jul 2019 13:12:35 +0100 Subject: [PATCH] add identifying name to FPNumBaseRecord --- src/ieee754/fpcommon/roundz.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ieee754/fpcommon/roundz.py b/src/ieee754/fpcommon/roundz.py index 9c9af127..3a656459 100644 --- a/src/ieee754/fpcommon/roundz.py +++ b/src/ieee754/fpcommon/roundz.py @@ -15,7 +15,7 @@ class FPRoundData: def __init__(self, pspec): width = pspec.width - self.z = FPNumBaseRecord(width, False) + self.z = FPNumBaseRecord(width, False, name="z") self.ctx = FPPipeContext(pspec) self.muxid = self.ctx.muxid # pipeline bypass [data comes from specialcases] -- 2.30.2