From: Luke Kenneth Casson Leighton Date: Sun, 28 Jul 2019 12:12:35 +0000 (+0100) Subject: add identifying name to FPNumBaseRecord X-Git-Tag: ls180-24jan2020~709 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a7e33cfb272906322f0d677aeb7c6bff4838afeb;p=ieee754fpu.git add identifying name to FPNumBaseRecord --- 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]