From: Jacob Lifshay Date: Thu, 28 Jul 2022 10:10:47 +0000 (-0700) Subject: DOUBLE2SINGLE: convert doc comments to docstring X-Git-Tag: sv_maxu_works-initial~202 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5b6be861f2ad9aa9dbd35e9e098b9783a8660bda;p=openpower-isa.git DOUBLE2SINGLE: convert doc comments to docstring --- diff --git a/src/openpower/decoder/helpers.py b/src/openpower/decoder/helpers.py index 1929315d..a81c3f09 100644 --- a/src/openpower/decoder/helpers.py +++ b/src/openpower/decoder/helpers.py @@ -472,9 +472,10 @@ class ISACallerHelper: return SelectableInt(exts(value.value, bits), self.XLEN) def DOUBLE2SINGLE(self, FRS): - # DOUBLE2SINGLE has been renamed to FRSP since it is the - # implementation of the frsp instruction. - # use SINGLE() or FRSP() instead, or just use struct.pack/unpack + """ DOUBLE2SINGLE has been renamed to FRSP since it is the + implementation of the frsp instruction. + use SINGLE() or FRSP() instead, or just use struct.pack/unpack + """ FPSCR = { 'UE': SelectableInt(0, 1), 'OE': SelectableInt(0, 1),